Author: gadamopoulos
Date: Sun Mar 29 14:51:02 2015
New Revision: 66962
URL:
http://svn.reactos.org/svn/reactos?rev=66962&view=rev
Log:
[TEST.H]
- 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.
Modified:
trunk/reactos/include/reactos/wine/test.h
Modified: trunk/reactos/include/reactos/wine/test.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/wine/test.…
==============================================================================
--- trunk/reactos/include/reactos/wine/test.h [iso-8859-1] (original)
+++ trunk/reactos/include/reactos/wine/test.h [iso-8859-1] Sun Mar 29 14:51:02 2015
@@ -617,7 +617,7 @@
/* 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",