crypt32/tests: Skip test if we don't have enough rights.

This commit is contained in:
Paul Vriens 2008-02-09 17:20:58 +01:00 committed by Alexandre Julliard
parent 795087bcc1
commit 24e4267bf9
1 changed files with 5 additions and 1 deletions

View File

@ -449,9 +449,13 @@ static void test_getDefaultOIDFunctionAddress(void)
"Expected ERROR_FILE_NOT_FOUND, got %d\n", GetLastError());
/* Even with a registered dll, this fails (since the dll doesn't exist) */
SetLastError(0xdeadbeef);
ret = CryptRegisterDefaultOIDFunction(0, "CertDllOpenStoreProv", 0,
bogusDll);
ok(ret, "CryptRegisterDefaultOIDFunction failed: %08x\n", GetLastError());
if (!ret && GetLastError() == ERROR_ACCESS_DENIED)
skip("Need admin rights\n");
else
ok(ret, "CryptRegisterDefaultOIDFunction failed: %08x\n", GetLastError());
ret = CryptGetDefaultOIDFunctionAddress(set, 0, NULL, 0, &funcAddr,
&hFuncAddr);
ok(!ret && GetLastError() == ERROR_FILE_NOT_FOUND,