lib/trusty: tipc-test should not print results to error stream

tipc-test results cannot be parsed in the CI because they output to
error stream

Bug: 314130383
Test: /data/nativetest64/vendor/tipc-test/tipc-test -t echo -r 1 -B 100
Change-Id: I2d6506fd69af06338041035526ca759884719c7b
This commit is contained in:
Raphael Herouart 2024-04-08 09:13:46 +00:00
parent 4f3a4cbc5e
commit b238b90a79

View file

@ -1041,7 +1041,7 @@ static int run_as_bench(const struct tipc_test_params* params) {
}
avg /= params->bench;
fprintf(stderr, BENCH_RESULT_TPL, params->test_name, min, max, avg, cold, min, max, avg, cold);
printf(BENCH_RESULT_TPL, params->test_name, min, max, avg, cold, min, max, avg, cold);
return rc;
}