Paul Vriens : advapi32/tests: CryptVerifySignatureW is not implemented on win98.

Alexandre Julliard julliard at winehq.org
Fri Feb 15 05:35:50 CST 2008


Module: wine
Branch: master
Commit: e2de4b18e5497854d3b30bb5b50cb7a19d446bc5
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=e2de4b18e5497854d3b30bb5b50cb7a19d446bc5

Author: Paul Vriens <paul.vriens.wine at gmail.com>
Date:   Wed Feb 13 18:38:44 2008 +0100

advapi32/tests: CryptVerifySignatureW is not implemented on win98.

---

 dlls/advapi32/tests/crypt.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/dlls/advapi32/tests/crypt.c b/dlls/advapi32/tests/crypt.c
index 4f5f431..413e201 100644
--- a/dlls/advapi32/tests/crypt.c
+++ b/dlls/advapi32/tests/crypt.c
@@ -400,6 +400,11 @@ static void test_verify_sig(void)
 
 	SetLastError(0xdeadbeef);
 	ret = pCryptVerifySignatureW(0, NULL, 0, 0, NULL, 0);
+	if (!ret && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
+	{
+		skip("CryptVerifySignatureW is not implemented\n");
+		return;
+	}
 	ok(!ret && GetLastError() == ERROR_INVALID_PARAMETER,
 	 "Expected ERROR_INVALID_PARAMETER, got %08x\n", GetLastError());
 	ret = pCryptAcquireContextA(&prov, szKeySet, NULL, PROV_RSA_FULL,




More information about the wine-cvs mailing list