diff options
author | Michael Ellerman <mpe@ellerman.id.au> | 2016-07-06 15:17:34 +1000 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2016-07-07 16:33:26 +1000 |
commit | bc5c0a0d7fa94777acb9e8857177d9e4586df12f (patch) | |
tree | 8aeca22f8f4d7a3c10e21e4e4c83055fbf3d02d0 /tools/testing | |
parent | 656ad58ef19e2a763fa5c938b20ae0f6b8d67242 (diff) | |
download | op-kernel-dev-bc5c0a0d7fa94777acb9e8857177d9e4586df12f.zip op-kernel-dev-bc5c0a0d7fa94777acb9e8857177d9e4586df12f.tar.gz |
selftests/powerpc: Use "Delta" rather than "Error" in normal output
Use "Delta" to refer to the difference between measurements, rather than
"Error", so scripts that look for "Error" aren't confused into thinking
there was a failure.
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'tools/testing')
-rw-r--r-- | tools/testing/selftests/powerpc/pmu/ebb/instruction_count_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/powerpc/pmu/ebb/instruction_count_test.c b/tools/testing/selftests/powerpc/pmu/ebb/instruction_count_test.c index 5da3551..ae9a790 100644 --- a/tools/testing/selftests/powerpc/pmu/ebb/instruction_count_test.c +++ b/tools/testing/selftests/powerpc/pmu/ebb/instruction_count_test.c @@ -51,7 +51,7 @@ static int do_count_loop(struct event *event, uint64_t instructions, printf("Looped for %lu instructions, overhead %lu\n", instructions, overhead); printf("Expected %lu\n", expected); printf("Actual %llu\n", event->result.value); - printf("Error %ld, %f%%\n", difference, percentage); + printf("Delta %ld, %f%%\n", difference, percentage); printf("Took %d EBBs\n", ebb_state.stats.ebb_count); } |