mirror of
https://github.com/reactos/wine.git
synced 2025-02-13 08:44:54 +00:00
Fixed GetFileVersionInfoSizeA tests on Win95.
This commit is contained in:
parent
df5051e925
commit
b8ac580ece
@ -159,8 +159,10 @@ static void test_info(void)
|
||||
|
||||
boolret = GetFileVersionInfoA( "kernel32.dll", 0, retval, 0);
|
||||
ok (!boolret, "GetFileVersionInfoA should have failed: GetLastError = 0x%08lx\n", GetLastError());
|
||||
ok ((GetLastError() == ERROR_INVALID_DATA) || (GetLastError() == ERROR_BAD_PATHNAME),
|
||||
"Last error wrong! ERROR_INVALID_DATA/ERROR_BAD_PATHNAME (ME) expected, got 0x%08lx\n",
|
||||
ok ((GetLastError() == ERROR_INVALID_DATA) || (GetLastError() == ERROR_BAD_PATHNAME) ||
|
||||
(GetLastError() == NO_ERROR),
|
||||
"Last error wrong! ERROR_INVALID_DATA/ERROR_BAD_PATHNAME (ME)/"
|
||||
"NO_ERROR (95) expected, got 0x%08lx\n",
|
||||
GetLastError());
|
||||
|
||||
boolret = GetFileVersionInfoA( "kernel32.dll", 0, retval, pVersionInfo );
|
||||
|
Loading…
x
Reference in New Issue
Block a user