bench_timers: Fix mixup in trace output

The equal sign was intended to be a symbol for parallel timers (two
lines), the minus was intended to be a single timer (one line).
This commit is contained in:
Joakim Nohlgård 2018-09-11 15:54:12 +02:00
parent f1a5b08d3a
commit 49debfc67c

View File

@ -403,10 +403,10 @@ static void run_test(test_ctx_t *ctx, uint32_t interval, unsigned int variant)
break;
}
if (variant & TEST_PARALLEL) {
print_str("- ");
print_str("= ");
}
else {
print_str("= ");
print_str("- ");
}
print_u32_dec(interval);
print("\n", 1);