mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
kernel32/tests: Handle the win2k3 version check behavior.
This commit is contained in:
parent
392387400e
commit
382ef908f1
1 changed files with 2 additions and 1 deletions
|
@ -165,7 +165,8 @@ static void test_VerifyVersionInfo(void)
|
|||
VER_MAJORVERSION, VER_GREATER_EQUAL));
|
||||
if (servicepack == 0)
|
||||
{
|
||||
ok(!ret, "VerifyVersionInfoA should have failed\n");
|
||||
ok(!ret || broken(ret), /* win2k3 */
|
||||
"VerifyVersionInfoA should have failed\n");
|
||||
ok(GetLastError() == ERROR_OLD_WIN_VERSION,
|
||||
"Expected ERROR_OLD_WIN_VERSION instead of %d\n", GetLastError());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue