Commit 46fd5620 authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

lz32/tests: Change a trace into a skip.

parent eba92bd7
...@@ -770,13 +770,13 @@ static void test_LZOpenFileW(void) ...@@ -770,13 +770,13 @@ static void test_LZOpenFileW(void)
SetLastError(0xfaceabee); SetLastError(0xfaceabee);
/* Check for nonexistent file. */ /* Check for nonexistent file. */
file = LZOpenFileW(badfilenameW, &test, OF_READ); file = LZOpenFileW(badfilenameW, &test, OF_READ);
ok(GetLastError() == ERROR_FILE_NOT_FOUND || GetLastError() == ERROR_CALL_NOT_IMPLEMENTED,
"GetLastError() returns %d\n", GetLastError());
if(GetLastError() == ERROR_CALL_NOT_IMPLEMENTED) if(GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
{ {
trace("LZOpenFileW call not implemented, skipping rest of the test\n"); win_skip("LZOpenFileW call is not implemented\n");
return; return;
} }
ok(GetLastError() == ERROR_FILE_NOT_FOUND,
"GetLastError() returns %d\n", GetLastError());
ok(file == LZERROR_BADINHANDLE, "LZOpenFileW succeeded on nonexistent file\n"); ok(file == LZERROR_BADINHANDLE, "LZOpenFileW succeeded on nonexistent file\n");
LZClose(file); LZClose(file);
......
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