From 6bc8237c633e1153ce2a69c5ee068fe48d74c59f Mon Sep 17 00:00:00 2001 From: Juan Lang Date: Fri, 20 Nov 2009 14:31:28 -0800 Subject: [PATCH] crypt32/tests: Test one more certificate against the Verisign CRL. --- dlls/crypt32/tests/crl.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dlls/crypt32/tests/crl.c b/dlls/crypt32/tests/crl.c index 5ae6bf656d5..cdb327f5eaa 100644 --- a/dlls/crypt32/tests/crl.c +++ b/dlls/crypt32/tests/crl.c @@ -1019,7 +1019,7 @@ static void testIsValidCRLForCert(void) CertFreeCRLContext(crl); - /* And again, with a real CRL, the CRL is valid for both certs. */ + /* And again, with a real CRL, the CRL is valid for all three certs. */ crl = CertCreateCRLContext(X509_ASN_ENCODING, verisignCRL, sizeof(verisignCRL)); ok(crl != NULL, "CertCreateCRLContext failed: %08x\n", GetLastError()); @@ -1028,6 +1028,8 @@ static void testIsValidCRLForCert(void) ok(ret, "CertIsValidCRLForCertificate failed: %08x\n", GetLastError()); ret = pCertIsValidCRLForCertificate(cert2, crl, 0, NULL); ok(ret, "CertIsValidCRLForCertificate failed: %08x\n", GetLastError()); + ret = pCertIsValidCRLForCertificate(cert3, crl, 0, NULL); + ok(ret, "CertIsValidCRLForCertificate failed: %08x\n", GetLastError()); CertFreeCRLContext(crl); @@ -1046,6 +1048,8 @@ static void testIsValidCRLForCert(void) ok(ret, "CertIsValidCRLForCertificate failed: %08x\n", GetLastError()); ret = pCertIsValidCRLForCertificate(cert2, crl, 0, NULL); ok(ret, "CertIsValidCRLForCertificate failed: %08x\n", GetLastError()); + ret = pCertIsValidCRLForCertificate(cert3, crl, 0, NULL); + ok(ret, "CertIsValidCRLForCertificate failed: %08x\n", GetLastError()); CertFreeCRLContext(crl);