Commit 010399a3 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

winetest: Report number of failures in more places.

parent 09fb0ca5
......@@ -1072,7 +1072,7 @@ run_tests (char *logname, char *outdir)
}
report (R_DELTA, 0, "Running: Done");
report (R_STATUS, "Cleaning up");
report (R_STATUS, "Cleaning up - %u failures", failures);
CloseHandle( logfile );
logfile = 0;
if (!outdir)
......@@ -1353,7 +1353,7 @@ int main( int argc, char *argv[] )
if (!send_file (logname) && !DeleteFileA(logname))
report (R_WARNING, "Can't remove logfile: %u", GetLastError());
} else run_tests (logname, outdir);
report (R_STATUS, "Finished");
report (R_STATUS, "Finished - %u failures", failures);
}
if (poweroff)
{
......
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