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

Unified Diff: net/quic/quic_end_to_end_unittest.cc

Issue 1567143003: Disable QuicEndToEndTest.LargePostWithNoPacketLoss and (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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/quic/quic_end_to_end_unittest.cc
diff --git a/net/quic/quic_end_to_end_unittest.cc b/net/quic/quic_end_to_end_unittest.cc
index d3aba8ed7afb0fdcaea97ecbd0ff5f787672d78f..a37895bcef1ebee60f9fd05dac777946fee0c2b8 100644
--- a/net/quic/quic_end_to_end_unittest.cc
+++ b/net/quic/quic_end_to_end_unittest.cc
@@ -259,7 +259,13 @@ TEST_F(QuicEndToEndTest, LargeGetWithNoPacketLoss) {
CheckResponse(consumer, "HTTP/1.1 200", response);
}
-TEST_F(QuicEndToEndTest, LargePostWithNoPacketLoss) {
+// crbug.com/559173
+#if defined(THREAD_SANITIZER)
+#define MAYBE_LargePostWithNoPacketLoss DISABLED_LargePostWithNoPacketLoss
+#else
+#define MAYBE_LargePostWithNoPacketLoss LargePostWithNoPacketLoss
+#endif
+TEST_F(QuicEndToEndTest, MAYBE_LargePostWithNoPacketLoss) {
InitializePostRequest(1024 * 1024);
AddToCache(request_.url.PathForRequest(), 200, "OK", kResponseBody);
@@ -274,7 +280,13 @@ TEST_F(QuicEndToEndTest, LargePostWithNoPacketLoss) {
CheckResponse(consumer, "HTTP/1.1 200", kResponseBody);
}
-TEST_F(QuicEndToEndTest, LargePostWithPacketLoss) {
+// crbug.com/559173
+#if defined(THREAD_SANITIZER)
+#define MAYBE_LargePostWithPacketLoss DISABLED_LargePostWithPacketLoss
+#else
+#define MAYBE_LargePostWithPacketLoss LargePostWithPacketLoss
+#endif
+TEST_F(QuicEndToEndTest, MAYBE_LargePostWithPacketLoss) {
// FLAGS_fake_packet_loss_percentage = 30;
InitializePostRequest(1024 * 1024);
« 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