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

Side by Side Diff: chrome/test/data/webui/net_internals/bandwidth_view.js

Issue 804573004: Disable NetInternalsTest.netInternalsDataReductionProxyDisabled which is flaky on Linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Include test fixture. 5 // Include test fixture.
6 GEN_INCLUDE(['net_internals_test.js']); 6 GEN_INCLUDE(['net_internals_test.js']);
7 7
8 // Anonymous namespace 8 // Anonymous namespace
9 (function() { 9 (function() {
10 10
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 TEST_F('NetInternalsTest', 'netInternalsDataReductionProxyEnabled', function() { 256 TEST_F('NetInternalsTest', 'netInternalsDataReductionProxyEnabled', function() {
257 var taskQueue = new NetInternalsTest.TaskQueue(true); 257 var taskQueue = new NetInternalsTest.TaskQueue(true);
258 taskQueue.addTask(new DataReductionProxyTask(true)); 258 taskQueue.addTask(new DataReductionProxyTask(true));
259 taskQueue.run(); 259 taskQueue.run();
260 }); 260 });
261 261
262 /** 262 /**
263 * Checks data reduction proxy info when it is disabled. 263 * Checks data reduction proxy info when it is disabled.
264 */ 264 */
265 TEST_F('NetInternalsTest', 265 TEST_F('NetInternalsTest',
266 'netInternalsDataReductionProxyDisabled', function() { 266 'DISABLED_netInternalsDataReductionProxyDisabled',
267 function() {
267 var taskQueue = new NetInternalsTest.TaskQueue(true); 268 var taskQueue = new NetInternalsTest.TaskQueue(true);
268 taskQueue.addTask(new DataReductionProxyTask(false)); 269 taskQueue.addTask(new DataReductionProxyTask(false));
269 taskQueue.run(); 270 taskQueue.run();
270 }); 271 });
271 272
272 })(); // Anonymous namespace 273 })(); // Anonymous namespace
OLDNEW
« 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