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

Side by Side Diff: chrome/browser/debugger/devtools_sanity_unittest.cc

Issue 6266019: Disable DevToolsSanityTest.TestPauseWhenLoadingDevTools and (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 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 unified diff | Download patch | Annotate | Revision Log
« 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "base/command_line.h" 5 #include "base/command_line.h"
6 #include "base/path_service.h" 6 #include "base/path_service.h"
7 #include "base/string_util.h" 7 #include "base/string_util.h"
8 #include "base/utf_string_conversions.h" 8 #include "base/utf_string_conversions.h"
9 #include "chrome/browser/debugger/devtools_client_host.h" 9 #include "chrome/browser/debugger/devtools_client_host.h"
10 #include "chrome/browser/debugger/devtools_manager.h" 10 #include "chrome/browser/debugger/devtools_manager.h"
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 } 277 }
278 278
279 // Tests that scripts are not duplicated after Scripts Panel switch. 279 // Tests that scripts are not duplicated after Scripts Panel switch.
280 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, 280 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest,
281 TestNoScriptDuplicatesOnPanelSwitch) { 281 TestNoScriptDuplicatesOnPanelSwitch) {
282 RunTest("testNoScriptDuplicatesOnPanelSwitch", kDebuggerTestPage); 282 RunTest("testNoScriptDuplicatesOnPanelSwitch", kDebuggerTestPage);
283 } 283 }
284 284
285 // Tests that debugger works correctly if pause event occurs when DevTools 285 // Tests that debugger works correctly if pause event occurs when DevTools
286 // frontend is being loaded. 286 // frontend is being loaded.
287 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestPauseWhenLoadingDevTools) { 287 // Disabled in http://crbug.com/70639
288 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestPauseWhenLoadingDevTools ) {
288 RunTest("testPauseWhenLoadingDevTools", kPauseWhenLoadingDevTools); 289 RunTest("testPauseWhenLoadingDevTools", kPauseWhenLoadingDevTools);
289 } 290 }
290 291
291 // Tests that pressing 'Pause' will pause script execution if the script 292 // Tests that pressing 'Pause' will pause script execution if the script
292 // is already running. 293 // is already running.
293 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestPauseWhenScriptIsRunning) { 294 // Disabled in http://crbug.com/70639
295 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestPauseWhenScriptIsRunning ) {
294 RunTest("testPauseWhenScriptIsRunning", kPauseWhenScriptIsRunning); 296 RunTest("testPauseWhenScriptIsRunning", kPauseWhenScriptIsRunning);
295 } 297 }
296 298
297 } // namespace 299 } // 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