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

Unified Diff: chrome/browser/debugger/devtools_sanity_unittest.cc

Issue 174113: Linux: more interactive tests porting.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: compile fixes Created 11 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 | « chrome/browser/blocked_popup_container_interactive_uitest.cc ('k') | chrome/chrome.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/debugger/devtools_sanity_unittest.cc
===================================================================
--- chrome/browser/debugger/devtools_sanity_unittest.cc (revision 23786)
+++ chrome/browser/debugger/devtools_sanity_unittest.cc (working copy)
@@ -15,6 +15,16 @@
#include "chrome/test/in_process_browser_test.h"
#include "chrome/test/ui_test_utils.h"
+
+#if defined(OS_WIN)
+#define MAYBE_TestShowScriptsTab TestShowScriptsTab
+#define MAYBE_TestSetBreakpoint TestSetBreakpoint
+#elif defined(OS_LINUX)
+// http://crbug.com/19748
+#define MAYBE_TestShowScriptsTab DISABLED_TestShowScriptsTab
+#define MAYBE_TestSetBreakpoint DISABLED_TestSetBreakpoint
+#endif
+
namespace {
// Used to block until a dev tools client window's browser is closed.
@@ -152,13 +162,13 @@
// Tests scripts panel showing.
// http://crbug.com/16767
-IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestShowScriptsTab) {
+IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, MAYBE_TestShowScriptsTab) {
RunTest("testShowScriptsTab", kDebuggerTestPage);
}
// Tests set breakpoint.
// http://crbug.com/16767
-IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestSetBreakpoint) {
+IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, MAYBE_TestSetBreakpoint) {
RunTest("testSetBreakpoint", kDebuggerTestPage);
}
« no previous file with comments | « chrome/browser/blocked_popup_container_interactive_uitest.cc ('k') | chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698