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

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

Issue 2308043003: Landing Recent QUIC changes until 5:55 PM, Aug 25, 2016 UTC-4 (Closed)
Patch Set: Fixes for various tests 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/test_tools/quic_test_utils.h ('k') | net/tools/quic/quic_dispatcher.h » ('j') | 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 27a8411d225741deb75d5cd874029b11b2294627..4988cc428c41f39a80530f74946aaa72f9035740 100644
--- a/net/tools/quic/end_to_end_test.cc
+++ b/net/tools/quic/end_to_end_test.cc
@@ -259,7 +259,7 @@ vector<TestParams> GetTestParams() {
// Run version negotiation tests tests with no options, or
// all the options enabled to avoid a combinatorial
// explosion.
- if (enabled_options > 0 &&
+ if (enabled_options > 1 &&
enabled_options < kMaxEnabledOptions) {
continue;
}
@@ -498,6 +498,9 @@ class EndToEndTest : public ::testing::TestWithParam<TestParams> {
FLAGS_quic_buffer_packet_till_chlo = GetParam().buffer_packet_till_chlo;
FLAGS_quic_use_cheap_stateless_rejects =
GetParam().use_cheap_stateless_reject;
+ if (!FLAGS_quic_buffer_packet_till_chlo) {
+ FLAGS_quic_limit_num_new_sessions_per_epoll_loop = false;
+ }
auto test_server =
new QuicTestServer(CryptoTestUtils::ProofSourceForTesting(),
server_config_, server_supported_versions_);
« no previous file with comments | « net/quic/test_tools/quic_test_utils.h ('k') | net/tools/quic/quic_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698