Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(330)

Unified Diff: net/base/x509_certificate_unittest.cc

Issue 333033: X509CertificateNSS::Verify should honor the VERIFY_REV_CHECKING_ENABLED... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Upload before checkin Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/base/x509_certificate_nss.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/x509_certificate_unittest.cc
===================================================================
--- net/base/x509_certificate_unittest.cc (revision 29898)
+++ net/base/x509_certificate_unittest.cc (working copy)
@@ -676,11 +676,6 @@
for (size_t i = 0; i < 20; ++i)
EXPECT_EQ(paypal_null_fingerprint[i], fingerprint.data[i]);
-#if defined(OS_WIN)
- // TODO(wtc): The Linux try bots still have NSS 3.12.0. They need to be
- // updated to NSS 3.12.3.1 or later. Also, nss_ocsp.cc asserts that the
- // current thread is a worker thread in our thread pool and therefore has
- // no message loop. That assertion is overly strict.
int flags = 0;
CertVerifyResult verify_result;
int error = paypal_null_cert->Verify("www.paypal.com", flags,
@@ -689,6 +684,9 @@
// Either the system crypto library should correctly report a certificate
// name mismatch, or our certificate blacklist should cause us to report an
// invalid certificate.
+#if defined(OS_WIN)
+ // TODO(wtc): The Linux try bots still have NSS 3.12.0. They need to be
+ // updated to NSS 3.12.3.1 or later.
EXPECT_NE(0, verify_result.cert_status &
(CERT_STATUS_COMMON_NAME_INVALID | CERT_STATUS_INVALID));
#endif
« no previous file with comments | « net/base/x509_certificate_nss.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698