Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bc5c0a0d authored by Michael Ellerman's avatar Michael Ellerman
Browse files

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: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 656ad58e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
	}