[PATCH 5/5] Fix some test failures on W2K with just SP3 or SP4

Paul Vriens Paul.Vriens.Wine at gmail.com
Wed Dec 16 07:00:01 CST 2009


---
 dlls/cryptnet/tests/cryptnet.c |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/dlls/cryptnet/tests/cryptnet.c b/dlls/cryptnet/tests/cryptnet.c
index 83060b6..1cdafa4 100644
--- a/dlls/cryptnet/tests/cryptnet.c
+++ b/dlls/cryptnet/tests/cryptnet.c
@@ -670,9 +670,12 @@ static void test_verifyRevocation(void)
     revPara.pftTimeToUse = &time;
     ret = pCertVerifyRevocation(X509_ASN_ENCODING, CERT_CONTEXT_REVOCATION_TYPE,
      1, (void **)&certs[1], 0, &revPara, &status);
-    ok(!ret && GetLastError() == CRYPT_E_NO_REVOCATION_CHECK,
+    ok(!ret, "Expected failure\n");
+    ok(GetLastError() == CRYPT_E_NO_REVOCATION_CHECK ||
+     broken(GetLastError() == CRYPT_E_REVOKED), /* W2K SP3/SP4 */
      "expected CRYPT_E_NO_REVOCATION_CHECK, got %08x\n", GetLastError());
-    ok(status.dwError == CRYPT_E_NO_REVOCATION_CHECK,
+    ok(status.dwError == CRYPT_E_NO_REVOCATION_CHECK ||
+     broken(GetLastError() == CRYPT_E_REVOKED), /* W2K SP3/SP4 */
      "expected CRYPT_E_NO_REVOCATION_CHECK, got %08x\n", status.dwError);
     ok(status.dwIndex == 0, "expected index 0, got %d\n", status.dwIndex);
     CertCloseStore(revPara.hCrlStore, 0);
-- 
1.6.2.5


--------------070405070008030701090206--



More information about the wine-patches mailing list