summaryrefslogtreecommitdiff
path: root/libs/binder/tests/schd-dbg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libs/binder/tests/schd-dbg.cpp')
-rw-r--r--libs/binder/tests/schd-dbg.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/binder/tests/schd-dbg.cpp b/libs/binder/tests/schd-dbg.cpp
index 56d958c6be..ab4c56a6af 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;
- // TODO: libjson?
+ // FIXME: 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);
- // TODO: libjson?
+ // FIXME: 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");
- // TODO: libjson?
+ // FIXME: 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;
}
- // TODO: libjson?
+ // FIXME: libjson?
cout << "\"inheritance\": " << (no_inherent == 0 ? "\"PASS\"" : "\"FAIL\"")
<< endl;
cout << "}" << endl;