Author: gadamopoulos Date: Mon Feb 20 19:26:27 2012 New Revision: 55759
URL: http://svn.reactos.org/svn/reactos?rev=55759&view=rev Log: - Hide test traces in test cd. This should make comparing test logs easier
Modified: trunk/reactos/boot/bootdata/bootcdregtest/regtest.cmd trunk/reactos/include/reactos/wine/test.h
Modified: trunk/reactos/boot/bootdata/bootcdregtest/regtest.cmd URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/bootdata/bootcdregtest... ============================================================================== --- trunk/reactos/boot/bootdata/bootcdregtest/regtest.cmd [iso-8859-1] (original) +++ trunk/reactos/boot/bootdata/bootcdregtest/regtest.cmd [iso-8859-1] Mon Feb 20 19:26:27 2012 @@ -1,3 +1,4 @@ @echo off +set WINETEST_DEBUG=0 dbgprint --process "ipconfig" -start rosautotest /r /s +start rosautotest /r /s
Modified: trunk/reactos/include/reactos/wine/test.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/wine/test.h... ============================================================================== --- trunk/reactos/include/reactos/wine/test.h [iso-8859-1] (original) +++ trunk/reactos/include/reactos/wine/test.h [iso-8859-1] Mon Feb 20 19:26:27 2012 @@ -314,7 +314,8 @@ } 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 @@ 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,