Commit 46d359d1 by Vicent Martí

Merge pull request #218 from schu/tests-fflush

test_lib.c: flush stdout after every test-run
parents a7fdce62 a7ed1625
...@@ -189,6 +189,8 @@ int git_testsuite_run(git_testsuite *ts) ...@@ -189,6 +189,8 @@ int git_testsuite_run(git_testsuite *ts)
putchar('F'); putchar('F');
} else } else
putchar('.'); putchar('.');
fflush(stdout);
} }
printf("\n "); printf("\n ");
print_details(ts); 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