- Add an additional new line before showing the test results. 
Some log commands print their lines in multiple print commands. As a result the results line can end up in the middle of a previous log that was not a complete line. This confuses testman and causes it to report this test as a crashed test as it can't find the line with the results. This is not the best fix possible but makes sure that the results in testman fluctuate a bit less.

svn path=/trunk/; revision=66962
This commit is contained in:
Giannis Adamopoulos 2015-03-29 14:51:02 +00:00
parent ebaa2e4dcd
commit f9d277801c

View file

@ -617,7 +617,7 @@ static int run_test( const char *name )
/* show test results even if traces are disabled */
/*if (winetest_debug)*/
{
fprintf( stdout, "%s: %d tests executed (%d marked as todo, %d %s), %d skipped.\n",
fprintf( stdout, "\n%s: %d tests executed (%d marked as todo, %d %s), %d skipped.\n",
test->name, successes + failures + todo_successes + todo_failures,
todo_successes, failures + todo_failures,
(failures + todo_failures != 1) ? "failures" : "failure",