From ce46e8b812e750baf090464f1aa576f80fe5af34 Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Fri, 1 Aug 2014 15:14:43 -0700 Subject: [PATCH] tweak format of report --- tests/jitter/src/main.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/jitter/src/main.cpp b/tests/jitter/src/main.cpp index ef63e3b2e1..bd6923330c 100644 --- a/tests/jitter/src/main.cpp +++ b/tests/jitter/src/main.cpp @@ -89,8 +89,7 @@ void runSend(const char* addressOption, int port, int gap, int size, int report) last = now; if (now - lastReport >= (report * MSEC_TO_USEC)) { - std::cout << "packet sent gap: " << actualGap << " " - << "gapDifference: " << gapDifferece << " " + std::cout << "SEND gap Difference From Expected " << "min: " << timeGaps.getMin() << " " << "max: " << timeGaps.getMax() << " " << "avg: " << timeGaps.getAverage() << " " @@ -146,8 +145,7 @@ void runReceive(const char* addressOption, int port, int gap, int size, int repo last = now; if (now - lastReport >= (report * MSEC_TO_USEC)) { - std::cout << "packet received gap:" << actualGap << " " - << "gapDifference: " << gapDifferece << " " + std::cout << "RECEIVE gap Difference From Expected " << "min: " << timeGaps.getMin() << " " << "max: " << timeGaps.getMax() << " " << "avg: " << timeGaps.getAverage() << " "