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

Unified Diff: net/tools/quic/end_to_end_test.cc

Issue 2964583002: Landing Recent QUIC changes until Jun 27 19:50:48 2017 +0000 (Closed)
Patch Set: Created 3 years, 6 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 | « net/quic/platform/impl/quic_logging_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/end_to_end_test.cc
diff --git a/net/tools/quic/end_to_end_test.cc b/net/tools/quic/end_to_end_test.cc
index 3d1c0ac4f40fbbf4c270408f44bc097cc7755d5d..e7ce866d53ca48e9f2073eff534af8d5d0e40559 100644
--- a/net/tools/quic/end_to_end_test.cc
+++ b/net/tools/quic/end_to_end_test.cc
@@ -384,16 +384,13 @@ class EndToEndTest : public QuicTestWithParam<TestParams> {
// TODO(nimia): Consider setting the congestion control algorithm for the
// client as well according to the test parameter.
copt.push_back(GetParam().congestion_control_tag);
- if (GetParam().congestion_control_tag == kQBIC &&
- FLAGS_quic_reloadable_flag_quic_fix_cubic_convex_mode) {
+ if (GetParam().congestion_control_tag == kQBIC) {
copt.push_back(kCCVX);
}
- if (GetParam().congestion_control_tag == kQBIC &&
- FLAGS_quic_reloadable_flag_quic_fix_cubic_bytes_quantization) {
+ if (GetParam().congestion_control_tag == kQBIC) {
copt.push_back(kCBQT);
}
- if (GetParam().congestion_control_tag == kQBIC &&
- FLAGS_quic_reloadable_flag_quic_enable_cubic_per_ack_updates) {
+ if (GetParam().congestion_control_tag == kQBIC) {
copt.push_back(kCPAU);
}
if (GetParam().congestion_control_tag == kTPCC &&
@@ -2218,9 +2215,6 @@ TEST_P(EndToEndTest, BadEncryptedData) {
TEST_P(EndToEndTest, CanceledStreamDoesNotBecomeZombie) {
ASSERT_TRUE(Initialize());
- if (GetParam().force_hol_blocking) {
- return;
- }
EXPECT_TRUE(client_->client()->WaitForCryptoHandshakeConfirmed());
// Lose the request.
SetPacketLossPercentage(100);
« no previous file with comments | « net/quic/platform/impl/quic_logging_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698