mirror of
https://github.com/reactos/reactos.git
synced 2025-04-26 16:40:27 +00:00
[ATL_APITEST] Fix a test that fails on Win 2003 x64
This commit is contained in:
parent
edf02414b9
commit
be56475ccf
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ START_TEST(CRegKey)
|
|||
memset(buffer, 0, sizeof(buffer));
|
||||
lret = key3.QueryValue(_T("APITEST_VALUE_NAME"), &type, buffer, &buffer_size);
|
||||
ok(lret == ERROR_ACCESS_DENIED, "Expected lret to be ERROR_ACCESS_DENIED, was: %lu\n", lret);
|
||||
ok(type == 0 || broken(type > 200), "Expected type to be 0, was: %lu\n", type);
|
||||
ok(type == 0 || ((sizeof(void*) == 8) && broken(type == 1)) || broken(type > 200), "Expected type to be 0, was: %lu\n", type);
|
||||
ok(buffer_size == sizeof(buffer), "Expected buffer_size to be %u, was: %lu\n", sizeof(buffer), buffer_size);
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue