summaryrefslogtreecommitdiffstats
path: root/net/quic
diff options
context:
space:
mode:
authoreroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-16 01:56:15 +0000
committereroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-16 01:56:15 +0000
commit19a8fc98a4a5e051748a70faa7dd8868fcaf50e9 (patch)
treeefbd0284a22f0b217c0f90e50feaa97597ce02da /net/quic
parente142e00f75f259a6f49676164e5feec63aedb930 (diff)
downloadchromium_src-19a8fc98a4a5e051748a70faa7dd8868fcaf50e9.zip
chromium_src-19a8fc98a4a5e051748a70faa7dd8868fcaf50e9.tar.gz
chromium_src-19a8fc98a4a5e051748a70faa7dd8868fcaf50e9.tar.bz2
Disable a hanging test (LargePostWithNoPacketLoss).
For real this time. I claimed to have done it in r228577, but I actually disabled the wrong test! This fixes that, and disables the proper one. R=rtenneti@chromium.org TBR=rtenneti BUG=307284 Review URL: https://codereview.chromium.org/27238012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@228832 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/quic')
-rw-r--r--net/quic/quic_end_to_end_unittest.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/quic/quic_end_to_end_unittest.cc b/net/quic/quic_end_to_end_unittest.cc
index 9229563..2d6a51e 100644
--- a/net/quic/quic_end_to_end_unittest.cc
+++ b/net/quic/quic_end_to_end_unittest.cc
@@ -241,7 +241,8 @@ TEST_F(QuicEndToEndTest, LargeGetWithNoPacketLoss) {
CheckResponse(consumer, "HTTP/1.1 200 OK", response);
}
-TEST_F(QuicEndToEndTest, LargePostWithNoPacketLoss) {
+// http://crbug.com/307284
+TEST_F(QuicEndToEndTest, DISABLED_LargePostWithNoPacketLoss) {
InitializePostRequest(10 * 1024 * 1024);
AddToCache("POST", request_.url.spec(),
@@ -258,8 +259,7 @@ TEST_F(QuicEndToEndTest, LargePostWithNoPacketLoss) {
CheckResponse(consumer, "HTTP/1.1 200 OK", kResponseBody);
}
-// http://crbug.com/307284
-TEST_F(QuicEndToEndTest, DISABLED_LargePostWithPacketLoss) {
+TEST_F(QuicEndToEndTest, LargePostWithPacketLoss) {
// FLAGS_fake_packet_loss_percentage = 30;
InitializePostRequest(1024 * 1024);