Commit 531af173 authored by Joe Downing's avatar Joe Downing Committed by Commit Bot

Disabling flaky SSLClientSocketReadTest.Read_ManySmallRecords test for ChromeOS

TBR: davidben@chromium.org
Bug: 1045656
Change-Id: I709806abf7b4918f64a93156b01c9406c8520b0a
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2020540Reviewed-by: default avatarJoe Downing <joedow@chromium.org>
Commit-Queue: Joe Downing <joedow@chromium.org>
Cr-Commit-Position: refs/heads/master@{#735189}
parent 754d6dde
...@@ -2405,7 +2405,13 @@ TEST_P(SSLClientSocketReadTest, Read_SmallChunks) { ...@@ -2405,7 +2405,13 @@ TEST_P(SSLClientSocketReadTest, Read_SmallChunks) {
} while (rv > 0); } while (rv > 0);
} }
TEST_P(SSLClientSocketReadTest, Read_ManySmallRecords) { #if defined(OS_CHROMEOS)
// TODO(crbug.com/1045656) Flaky on ChromeOS.
#define MAYBE_Read_ManySmallRecords DISABLED_Read_ManySmallRecords
#else
#define MAYBE_Read_ManySmallRecords Read_ManySmallRecords
#endif
TEST_P(SSLClientSocketReadTest, MAYBE_Read_ManySmallRecords) {
ASSERT_TRUE( ASSERT_TRUE(
StartEmbeddedTestServer(EmbeddedTestServer::CERT_OK, GetServerConfig())); StartEmbeddedTestServer(EmbeddedTestServer::CERT_OK, GetServerConfig()));
......
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