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

Unified Diff: crypto/signature_verifier_unittest.cc

Issue 7528010: Remove Purify and Quantify (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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 | « content/browser/resolve_proxy_msg_helper_unittest.cc ('k') | media/base/pipeline_impl_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: crypto/signature_verifier_unittest.cc
===================================================================
--- crypto/signature_verifier_unittest.cc (revision 96482)
+++ crypto/signature_verifier_unittest.cc (working copy)
@@ -238,14 +238,7 @@
EXPECT_TRUE(ok);
verifier.VerifyUpdate(bad_tbs_certificate, sizeof(bad_tbs_certificate));
ok = verifier.VerifyFinal();
-
- // Purify disables digital signature verification, causing the Windows
- // CryptoAPI function CryptVerifySignature to always succeed. So we can't
- // check the signature verification results of the negative tests when
- // running inside Purify. See http://crbug.com/10031.
-#ifndef PURIFY
EXPECT_FALSE(ok);
-#endif
// Test 4: verify a bad signature.
uint8 bad_signature[sizeof(signature)];
@@ -261,8 +254,6 @@
if (ok) {
verifier.VerifyUpdate(tbs_certificate, sizeof(tbs_certificate));
ok = verifier.VerifyFinal();
-#ifndef PURIFY
EXPECT_FALSE(ok);
-#endif
}
}
« no previous file with comments | « content/browser/resolve_proxy_msg_helper_unittest.cc ('k') | media/base/pipeline_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698