ntdll/tests: Add optional return value for some win7 machines.

This commit is contained in:
André Hentschel 2011-12-30 16:33:23 +01:00 committed by Alexandre Julliard
parent f90d5a8f72
commit cc50de1156
1 changed files with 2 additions and 1 deletions

View File

@ -396,7 +396,8 @@ static void test_NtCreateKey(void)
/* Only attributes */
status = pNtCreateKey(NULL, 0, &attr, 0, 0, 0, 0);
ok(status == STATUS_ACCESS_VIOLATION, "Expected STATUS_ACCESS_VIOLATION, got: 0x%08x\n", status);
ok(status == STATUS_ACCESS_VIOLATION || status == STATUS_ACCESS_DENIED /* Win7 */,
"Expected STATUS_ACCESS_VIOLATION or STATUS_ACCESS_DENIED, got: 0x%08x\n", status);
/* Length > sizeof(OBJECT_ATTRIBUTES) */
attr.Length *= 2;