org/chromium/net/smoke/QuicTest.java currently writes an unrecognized experimental option ("host_whitelist"). The test needs to be updated.
JSONObject quicParams = new JSONObject().put("delay_tcp_race", true);
JSONObject experimentalOptions = new JSONObject().put("QUIC", quicParams);
mTestSupport.addHostResolverRules(experimentalOptions);
experimentalOptions.put("host_whitelist", url.getHost());
"host_whitelist" should be a field in quicParams and not as a standalone experiment.
Comment 1 by kapishnikov@chromium.org
, Apr 6 2017