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

Unified Diff: net/cert/ct_log_verifier_unittest.cc

Issue 1837013002: disable CTLogVerifierTest.VerifiesValidConsistencyProofsFromReferenceGenerator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/ct_log_verifier_unittest.cc
diff --git a/net/cert/ct_log_verifier_unittest.cc b/net/cert/ct_log_verifier_unittest.cc
index 3ee926353af8b6f617bd4a63b69d2e46a09b5c9a..3b620b5c96c0dd927ec1e45b185b0288092f2313 100644
--- a/net/cert/ct_log_verifier_unittest.cc
+++ b/net/cert/ct_log_verifier_unittest.cc
@@ -483,11 +483,16 @@ std::vector<std::string> ReferenceSnapshotConsistency(std::string* inputs,
return proof;
}
-// "brute-force" test generating a tree of 256 entries, generating
-// a consistency proof for each snapshot of each sub-tree up to that
-// size and making sure it verifies.
+// Times out on Win7 test bot. http://crbug.com/598406
+#if defined(OS_WIN)
+#define MAYBE_VerifiesValidConsistencyProofsFromReferenceGenerator \
+ DISABLED_VerifiesValidConsistencyProofsFromReferenceGenerator
+#else
+#define MAYBE_VerifiesValidConsistencyProofsFromReferenceGenerator \
+ VerifiesValidConsistencyProofsFromReferenceGenerator
+#endif
TEST_F(CTLogVerifierTest,
- VerifiesValidConsistencyProofsFromReferenceGenerator) {
+ MAYBE_VerifiesValidConsistencyProofsFromReferenceGenerator) {
std::vector<std::string> data;
for (int i = 0; i < 256; ++i)
data.push_back(std::string(1, i));
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698