Commit 0cf9bd9c authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

lz32: Fix a test failure in win9x.

parent e71e3efe
......@@ -369,7 +369,8 @@ static void test_LZOpenFileA(void)
ok(file >= 0, "LZOpenFileA failed on creation\n");
ok(test.cBytes == sizeof(OFSTRUCT),
"LZOpenFileA set test.cBytes to %d\n", test.cBytes);
ok(test.nErrCode == ERROR_SUCCESS,
ok(test.nErrCode == ERROR_SUCCESS ||
test.nErrCode == ERROR_FILE_NOT_FOUND, /* win9x */
"LZOpenFileA set test.nErrCode to %d\n", test.nErrCode);
ok(lstrcmpA(test.szPathName, expected) == 0,
"LZOpenFileA returned '%s', but was expected to return '%s'\n",
......
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