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

Unified Diff: components/cronet/android/test/javatests/src/org/chromium/net/QuicTest.java

Issue 2224523002: Disable connection migration in cronet tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/cronet/android/test/javatests/src/org/chromium/net/QuicTest.java
diff --git a/components/cronet/android/test/javatests/src/org/chromium/net/QuicTest.java b/components/cronet/android/test/javatests/src/org/chromium/net/QuicTest.java
index 59e134e2e17266e708ec507fdb6fb073551c6e37..6088f2596e4f57f91be3c5a99eb2dcedcfe841bd 100644
--- a/components/cronet/android/test/javatests/src/org/chromium/net/QuicTest.java
+++ b/components/cronet/android/test/javatests/src/org/chromium/net/QuicTest.java
@@ -41,6 +41,7 @@ public class QuicTest extends CronetTestBase {
mBuilder.addQuicHint(QuicTestServer.getServerHost(), QuicTestServer.getServerPort(),
QuicTestServer.getServerPort());
+ // TODO(mgersh): Enable connection migration once it works, see http://crbug.com/634910
JSONObject quicParams = new JSONObject()
.put("connection_options", "PACE,IW10,FOO,DEADBEEF")
.put("host_whitelist", "test.example.com")
@@ -50,8 +51,8 @@ public class QuicTest extends CronetTestBase {
.put("packet_loss_threshold", 0.5)
.put("idle_connection_timeout_seconds", 300)
.put("close_sessions_on_ip_change", false)
- .put("migrate_sessions_on_network_change", true)
- .put("migrate_sessions_early", true)
+ .put("migrate_sessions_on_network_change", false)
+ .put("migrate_sessions_early", false)
.put("race_cert_verification", true);
JSONObject experimentalOptions = new JSONObject().put("QUIC", quicParams);
mBuilder.setExperimentalOptions(experimentalOptions.toString());
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698