- Hide test traces in test cd. This should make comparing test logs easier

svn path=/trunk/; revision=55759
This commit is contained in:
Giannis Adamopoulos 2012-02-20 19:26:27 +00:00
parent 287bd60ec8
commit 35fb03888f
2 changed files with 6 additions and 3 deletions

View file

@ -1,3 +1,4 @@
@echo off
set WINETEST_DEBUG=0
dbgprint --process "ipconfig"
start rosautotest /r /s
start rosautotest /r /s

View file

@ -314,7 +314,8 @@ int winetest_vok( int condition, const char *msg, __winetest_va_list args )
}
else
{
if (winetest_debug > 0)
/* show todos even if traces are disabled*/
/*if (winetest_debug > 0)*/
{
fprintf( stdout, "%s:%d: Test marked todo: ",
data->current_file, data->current_line );
@ -555,7 +556,8 @@ static int run_test( const char *name )
current_test = test;
test->func();
if (winetest_debug)
/* 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",
test->name, successes + failures + todo_successes + todo_failures,