Merge pull request #9922 from gebart/pr/bench_timers_typo

bench_timers: Fix mixup in trace output
This commit is contained in:
Kaspar Schleiser 2018-09-16 22:01:05 +02:00 committed by GitHub
commit e66e9f8c5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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