crypt32/tests: Test one more certificate against the Verisign CRL.

This commit is contained in:
Juan Lang 2009-11-20 14:31:28 -08:00 committed by Alexandre Julliard
parent 22206b909a
commit 6bc8237c63
1 changed files with 5 additions and 1 deletions

View File

@ -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);