Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0546929a authored by Steven Moreland's avatar Steven Moreland
Browse files

libbinder: schd-dbg test FIXME -> TODO

FIXMEs are usually used for TODOs intended to be fixed before a CL is
merged.

Bug: N/A
Test: N/A
Change-Id: I3590483ba155ed5c8c14e0b889d0da0688eee92f
parent 5a5b85d4
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -245,7 +245,7 @@ struct Results {
    double best = (double)m_best / 1.0E6;
    double worst = (double)m_worst / 1.0E6;
    double average = (double)m_total_time / m_transactions / 1.0E6;
    // FIXME: libjson?
    // TODO: libjson?
    int W = DUMP_PRESICION + 2;
    cout << setprecision(DUMP_PRESICION) << "{ \"avg\":" << setw(W) << left
         << average << ",\"wst\":" << setw(W) << left << worst
@@ -376,7 +376,7 @@ void worker_fx(int num, int no_process, int iterations, int payload_size,
  if (is_client(num)) {
    int no_trans = iterations * 2;
    double sync_ratio = (1.0 - (double)no_sync / no_trans);
    // FIXME: libjson?
    // TODO: libjson?
    cout << "\"P" << (num - server_count) << "\":{\"SYNC\":\""
         << ((sync_ratio > GOOD_SYNC_MIN) ? "GOOD" : "POOR") << "\","
         << "\"S\":" << (no_trans - no_sync) << ",\"I\":" << no_trans << ","
@@ -466,7 +466,7 @@ int main(int argc, char** argv) {
  }
  vector<Pipe> pipes;
  thread_dump("main");
  // FIXME: libjson?
  // TODO: libjson?
  cout << "{" << endl;
  cout << "\"cfg\":{\"pair\":" << (no_process / 2)
       << ",\"iterations\":" << iterations << ",\"deadline_us\":" << deadline_us
@@ -495,7 +495,7 @@ int main(int argc, char** argv) {
    // detected in the child process
    no_inherent += status;
  }
  // FIXME: libjson?
  // TODO: libjson?
  cout << "\"inheritance\": " << (no_inherent == 0 ? "\"PASS\"" : "\"FAIL\"")
       << endl;
  cout << "}" << endl;