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

Unified Diff: net/quic/core/quic_protocol_test.cc

Issue 2230223003: fix bug in QUIC force HOL blocking experiment, guarded by --quic_enable_version_36_v2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@129468670
Patch Set: git pull from up stream Created 4 years, 4 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_protocol.cc ('k') | net/tools/quic/end_to_end_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_protocol_test.cc
diff --git a/net/quic/core/quic_protocol_test.cc b/net/quic/core/quic_protocol_test.cc
index 1013851ff0c4fe2dbc41745c669dcf73882dbcc5..deee2839823534ca887a92545e808644752ee809 100644
--- a/net/quic/core/quic_protocol_test.cc
+++ b/net/quic/core/quic_protocol_test.cc
@@ -289,7 +289,7 @@ TEST(QuicProtocolTest, FilterSupportedVersions) {
QUIC_VERSION_34, QUIC_VERSION_35, QUIC_VERSION_36};
FLAGS_quic_enable_version_35 = false;
- FLAGS_quic_enable_version_36 = false;
+ FLAGS_quic_enable_version_36_v2 = false;
QuicVersionVector filtered_versions = FilterSupportedVersions(all_versions);
ASSERT_EQ(5u, filtered_versions.size());
@@ -302,12 +302,12 @@ TEST(QuicProtocolTest, FilterSupportedVersions) {
TEST(QuicProtocolTest, QuicVersionManager) {
FLAGS_quic_enable_version_35 = false;
- FLAGS_quic_enable_version_36 = false;
+ FLAGS_quic_enable_version_36_v2 = false;
QuicVersionManager manager(AllSupportedVersions());
EXPECT_EQ(FilterSupportedVersions(AllSupportedVersions()),
manager.GetSupportedVersions());
FLAGS_quic_enable_version_35 = true;
- FLAGS_quic_enable_version_36 = true;
+ FLAGS_quic_enable_version_36_v2 = true;
EXPECT_EQ(FilterSupportedVersions(AllSupportedVersions()),
manager.GetSupportedVersions());
EXPECT_EQ(QUIC_VERSION_36, manager.GetSupportedVersions()[0]);
« no previous file with comments | « net/quic/core/quic_protocol.cc ('k') | net/tools/quic/end_to_end_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698