Commit b5c9bdad authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

advapi32/tests: Add a test for opening an event with access 0.

parent bce1a2b3
......@@ -4624,6 +4624,13 @@ todo_wine
ok(access == map[i].mapped, "%d: expected %#x, got %#x\n", i, map[i].mapped, access);
CloseHandle(dup);
SetLastError(0xdeadbeef);
dup = OpenEventA(0, FALSE, "WineTestEvent");
todo_wine
ok(!dup, "OpenEvent should fail\n");
todo_wine
ok(GetLastError() == ERROR_ACCESS_DENIED, "wrong error %u\n", GetLastError());
}
test_default_handle_security(token, event, &mapping);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment