Commit a7ed1625 by schu

test_lib.c: flush stdout after every test-run

Make sure the user immediately sees the feedback, '.' or 'F', for a
test. If it's only in the buffer, it may gets "lost" in case of error.

Signed-off-by: schu <schu-github@schulog.org>
parent 4191d529
......@@ -189,6 +189,8 @@ int git_testsuite_run(git_testsuite *ts)
putchar('F');
} else
putchar('.');
fflush(stdout);
}
printf("\n ");
print_details(ts);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment