diff options
| author | 2020-11-24 19:06:15 +0000 | |
|---|---|---|
| committer | 2020-11-24 19:06:15 +0000 | |
| commit | bc97506d0093c5400c117c1de715005c25345046 (patch) | |
| tree | 3201517cf0f2011297f3977d4344aa811608b8b5 | |
| parent | e42a54b17768ea80f198c1b00bc6c4797a4485d8 (diff) | |
| parent | 0546929af866c08773fb8d2004b2d356db16545e (diff) | |
Merge "libbinder: schd-dbg test FIXME -> TODO"
| -rw-r--r-- | libs/binder/tests/schd-dbg.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/binder/tests/schd-dbg.cpp b/libs/binder/tests/schd-dbg.cpp index ab4c56a6af..56d958c6be 100644 --- a/libs/binder/tests/schd-dbg.cpp +++ b/libs/binder/tests/schd-dbg.cpp @@ -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; |