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

Commit b238b90a authored by Raphael Herouart's avatar Raphael Herouart
Browse files

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
parent 4f3a4cbc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}