summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormike-holmes <mike.holmes@linaro.org>2013-09-28 23:17:09 -0400
committermike-holmes <mike.holmes@linaro.org>2013-09-28 23:17:09 -0400
commiteb6cfc1d0f458e5c4ce6678632338ff4092007f6 (patch)
treeb136463d9b4a55747284986cb98f13ce49adb1b4
parent280969f72a43537a200af02c9b6831a351ac7fb5 (diff)
output
-rw-r--r--latency.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/latency.c b/latency.c
index 0d40273..2d24423 100644
--- a/latency.c
+++ b/latency.c
@@ -385,9 +385,9 @@ int main(int argc, char* argv[])
munlockall();
cout << "test_result:outofrange=" << hot.outofrange << " count " << " FAIL" << endl;
- cout << "test_result:deadline_missed=" << hot.deadline_missed << " count " << " FAIL" << endl;
- cout << "test_result:minrange=" << hot.minrange << " = " << tous(hot.minrange,clockspersec) << " us" << " INFO" << endl;
- cout << "test_result:maxrange=" << hot.maxrange << " = " << tous(hot.maxrange,clockspersec) << " us" << " INFO" << endl;
+ cout << "test_result:deadline_missed=" << hot.deadline_missed << " count " << " FAIL" << endl;
+ cout << "test_result:minrange=" << tous(hot.minrange,clockspersec) << " us" << " INFO" << endl
+ cout << "test_result:maxrange=" << tous(hot.maxrange,clockspersec) << " us" << " INFO" << endl;
cout << "test_result:average=" << tous(runtime * clockspersec / loops,clockspersec) << " us" << " INFO" << endl;