Commit b893575c authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

localspl/tests: Use skip if localspl can't be loaded.

parent 9089835c
......@@ -1086,7 +1086,10 @@ START_TEST(localmon)
/* This DLL does not exist on Win9x */
hdll = LoadLibraryA("localspl.dll");
if (!hdll) return;
if (!hdll) {
skip("localspl.dll cannot be loaded, most likely running on Win9x\n");
return;
}
tempdirW[0] = '\0';
tempfileW[0] = '\0';
......
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