mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[ATL_APITEST] Ignore known to be bad values for type
This commit is contained in:
parent
a0a19c60d0
commit
2cd219eb23
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,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 == 203) || broken(type == 2292784), "Expected type to be 0, was: %lu\n", type);
|
||||
ok(type == 0 || 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