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

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

Issue 194033: DevTools: re-enable some devtools interactive ui tests (attempt №2) (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | webkit/glue/webkit_resources.grd » ('j') | 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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 "chrome/browser/browser.h" 6 #include "chrome/browser/browser.h"
7 #include "chrome/browser/debugger/devtools_client_host.h" 7 #include "chrome/browser/debugger/devtools_client_host.h"
8 #include "chrome/browser/debugger/devtools_manager.h" 8 #include "chrome/browser/debugger/devtools_manager.h"
9 #include "chrome/browser/debugger/devtools_window.h" 9 #include "chrome/browser/debugger/devtools_window.h"
10 #include "chrome/browser/renderer_host/render_view_host.h" 10 #include "chrome/browser/renderer_host/render_view_host.h"
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 } 145 }
146 146
147 // Tests profiler panel. 147 // Tests profiler panel.
148 // Flaky, http://crbug.com/21108 148 // Flaky, http://crbug.com/21108
149 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestProfilerTab) { 149 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestProfilerTab) {
150 RunTest("testProfilerTab", kJsPage); 150 RunTest("testProfilerTab", kJsPage);
151 } 151 }
152 152
153 // Tests scripts panel showing. 153 // Tests scripts panel showing.
154 // http://crbug.com/16767 154 // http://crbug.com/16767
155 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestShowScriptsTab) { 155 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestShowScriptsTab) {
156 RunTest("testShowScriptsTab", kDebuggerTestPage); 156 RunTest("testShowScriptsTab", kDebuggerTestPage);
157 } 157 }
158 158
159 // Tests set breakpoint. 159 // Tests set breakpoint.
160 // http://crbug.com/16767 160 // http://crbug.com/16767
161 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestSetBreakpoint) { 161 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestSetBreakpoint) {
162 RunTest("testSetBreakpoint", kDebuggerTestPage); 162 RunTest("testSetBreakpoint", kDebuggerTestPage);
163 } 163 }
164 164
165 // Tests that 'Pause' button works for eval. 165 // Tests that 'Pause' button works for eval.
166 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestPauseInEval) { 166 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestPauseInEval) {
167 RunTest("testPauseInEval", kDebuggerTestPage); 167 RunTest("testPauseInEval", kDebuggerTestPage);
168 } 168 }
169 169
170 // Tests console eval. 170 // Tests console eval.
171 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestConsoleEval) { 171 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestConsoleEval) {
172 RunTest("testConsoleEval", kConsoleTestPage); 172 RunTest("testConsoleEval", kConsoleTestPage);
173 } 173 }
174 174
175 // Tests console log. 175 // Tests console log.
176 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestConsoleLog) { 176 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestConsoleLog) {
177 RunTest("testConsoleLog", kConsoleTestPage); 177 RunTest("testConsoleLog", kConsoleTestPage);
178 } 178 }
179 179
180 // Tests eval global values. 180 // Tests eval global values.
181 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestEvalGlobal) { 181 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestEvalGlobal) {
182 RunTest("testEvalGlobal", kEvalTestPage); 182 RunTest("testEvalGlobal", kEvalTestPage);
183 } 183 }
184 184
185 // Tests eval on call frame. 185 // Tests eval on call frame.
186 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestEvalCallFrame) { 186 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestEvalCallFrame) {
187 RunTest("testEvalCallFrame", kEvalTestPage); 187 RunTest("testEvalCallFrame", kEvalTestPage);
188 } 188 }
189 189
190 } // namespace 190 } // namespace
OLDNEW
« no previous file with comments | « no previous file | webkit/glue/webkit_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698