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

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

Issue 2352043004: Use Cubic when kBBR option is specified. (Closed)
Patch Set: Created 4 years, 3 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/core/quic_sent_packet_manager_test.cc ('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 f43b5143ca34a211a885c7c1d637fade6f2cf580..869eab2de220f79991757bd0c17a963fa45bed5a 100644
--- a/net/tools/quic/end_to_end_test.cc
+++ b/net/tools/quic/end_to_end_test.cc
@@ -287,12 +287,12 @@ vector<TestParams> GetTestParams() {
} // End of version for loop.
} // End of 2nd version for loop.
} // End of small_client_mtu loop.
- } // End of buffer_packet_till_chlo loop.
- } // End of use_cheap_stateless_reject for loop.
- } // End of force_hol_blocking loop.
- } // End of disable_hpack_dynamic_table for loop.
- } // End of congestion_control_tag for loop.
- } // End of client_supports_stateless_rejects for loop.
+ } // End of buffer_packet_till_chlo loop.
+ } // End of use_cheap_stateless_reject for loop.
+ } // End of force_hol_blocking loop.
+ } // End of disable_hpack_dynamic_table for loop.
+ } // End of congestion_control_tag for loop.
+ } // End of client_supports_stateless_rejects for loop.
CHECK_EQ(kMaxEnabledOptions, max_enabled_options);
} // End of server_uses_stateless_rejects_if_peer_supported for loop.
return params;
@@ -1359,7 +1359,9 @@ TEST_P(EndToEndTest, NegotiateCongestionControl) {
expected_congestion_control_type = kReno;
break;
case kTBBR:
- expected_congestion_control_type = kBBR;
+ // TODO(vasilvv): switch this back to kBBR when new BBR implementation is
+ // in.
+ expected_congestion_control_type = kCubic;
break;
case kQBIC:
expected_congestion_control_type = kCubic;
« no previous file with comments | « net/quic/core/quic_sent_packet_manager_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698