tests: flush stdout after printing test suite timing info

Summary:
avoid repeating lines

Depends on D5937

Reviewers: stefan_schmidt

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D5917
This commit is contained in:
Mike Blumenkrantz 2018-04-16 11:46:01 +02:00 committed by Stefan Schmidt
parent 1885374ce5
commit 576570ce27
1 changed files with 4 additions and 1 deletions

View File

@ -320,7 +320,10 @@ _efl_suite_build_and_run(int argc, const char **argv, const char *suite_name, co
#ifdef ENABLE_TIMING_INFO
if (timing)
printf("SUITE TIME %s: %.5g\n", suite_name, _timing_time_get() - tstart);
{
printf("SUITE TIME(%u) %s: %.5g\n", getpid(), suite_name, _timing_time_get() - tstart);
fflush(stdout);
}
#endif
return failed_count;
}