Module: wine Branch: master Commit: cc50de11568d9b70ff07ad15fc473297d594f289 URL: http://source.winehq.org/git/wine.git/?a=commit;h=cc50de11568d9b70ff07ad15fc...
Author: André Hentschel nerv@dawncrow.de Date: Fri Dec 30 16:33:23 2011 +0100
ntdll/tests: Add optional return value for some win7 machines.
---
dlls/ntdll/tests/reg.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/dlls/ntdll/tests/reg.c b/dlls/ntdll/tests/reg.c index 5ca14eb..1bd0a01 100644 --- a/dlls/ntdll/tests/reg.c +++ b/dlls/ntdll/tests/reg.c @@ -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;