Commit db5145c7 authored by Luciano Pacheco's avatar Luciano Pacheco Committed by Commit Bot

Disable flaky test IntermediateFromAia404

Test has been flaky on Win builders.

Tbr: eroman@chromium.org
Bug: 859387
Change-Id: I57bdda3903c30e06f05fe89d367f94429bb4e31a
Reviewed-on: https://chromium-review.googlesource.com/1121917Reviewed-by: default avatarLuciano Pacheco <lucmult@chromium.org>
Commit-Queue: Luciano Pacheco <lucmult@chromium.org>
Cr-Commit-Position: refs/heads/master@{#571806}
parent 3375ba6c
...@@ -2728,7 +2728,13 @@ INSTANTIATE_TEST_CASE_P(, ...@@ -2728,7 +2728,13 @@ INSTANTIATE_TEST_CASE_P(,
// NOTE: This test is separate from IntermediateFromAia200 as a different URL // NOTE: This test is separate from IntermediateFromAia200 as a different URL
// needs to be used to avoid having the result depend on globally cached success // needs to be used to avoid having the result depend on globally cached success
// or failure of the fetch. // or failure of the fetch.
TEST_P(CertVerifyProcInternalWithNetFetchingTest, IntermediateFromAia404) { // Test flaky on Win crbug.com/859387
#if defined(OS_WIN)
#define MAYBE_IntermediateFromAia404 DISABLED_IntermediateFromAia404
#else
#define MAYBE_IntermediateFromAia404 IntermediateFromAia404
#endif
TEST_P(CertVerifyProcInternalWithNetFetchingTest, MAYBE_IntermediateFromAia404) {
const char kHostname[] = "www.example.com"; const char kHostname[] = "www.example.com";
base::FilePath certs_dir = base::FilePath certs_dir =
...@@ -2771,6 +2777,7 @@ TEST_P(CertVerifyProcInternalWithNetFetchingTest, IntermediateFromAia404) { ...@@ -2771,6 +2777,7 @@ TEST_P(CertVerifyProcInternalWithNetFetchingTest, IntermediateFromAia404) {
&verify_result); &verify_result);
EXPECT_THAT(error, IsError(ERR_CERT_AUTHORITY_INVALID)); EXPECT_THAT(error, IsError(ERR_CERT_AUTHORITY_INVALID));
} }
#undef MAYBE_IntermediateFromAia404
// Tries verifying a certificate chain that is missing an intermediate. The // Tries verifying a certificate chain that is missing an intermediate. The
// intermediate is available via AIA. // intermediate is available via AIA.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment