Module: wine Branch: master Commit: 3a7c16992b0583da39c75531a19248e2dcf222ff URL: http://source.winehq.org/git/wine.git/?a=commit;h=3a7c16992b0583da39c75531a1...
Author: Paul Vriens paul.vriens.wine@gmail.com Date: Thu Aug 23 08:55:05 2007 +0200
winetest: Change the way we report missing dlls.
---
programs/winetest/main.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/programs/winetest/main.c b/programs/winetest/main.c index f433584..5d5462b 100644 --- a/programs/winetest/main.c +++ b/programs/winetest/main.c @@ -443,9 +443,7 @@ extract_test_proc (HMODULE hModule, LPCTSTR lpszType,
dll = LoadLibraryExA(dllname, NULL, LOAD_LIBRARY_AS_DATAFILE); if (!dll) { - xprintf ("%s:%s_dll_missing start 0 0\n", dllname, dllname); - xprintf ("%s_dll_missing: -1 tests executed (-1 marked as todo, -1 failures), -1 skipped.\n", dllname); - xprintf ("%s:%s_dll_missing done (0)\n", dllname, dllname); + xprintf (" %s=dll is missing\n", dllname); return TRUE; } FreeLibrary(dll); @@ -526,7 +524,7 @@ run_tests (char *logname) } xprintf ("Operating system version:\n"); print_version (); - xprintf ("Test output:\n" ); + xprintf ("Dll info:\n" );
report (R_STATUS, "Counting tests"); if (!EnumResourceNames (NULL, MAKEINTRESOURCE(TESTRES), @@ -544,6 +542,8 @@ run_tests (char *logname) report (R_FATAL, "Can't enumerate test files: %d", GetLastError ());
+ xprintf ("Test output:\n" ); + report (R_DELTA, 0, "Extracting: Done");
report (R_STATUS, "Running tests");