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

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

Issue 174395: DevTools: Enable devtools sanity tests on Linux. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' 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 | « no previous file | chrome/test/data/devtools/debugger_test.js » ('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 24220)
+++ chrome/browser/debugger/devtools_sanity_unittest.cc (working copy)
@@ -16,15 +16,6 @@
#include "chrome/test/ui_test_utils.h"
-#if defined(OS_WIN)
-#define MAYBE_TestShowScriptsTab DISABLED_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.
@@ -55,6 +46,7 @@
const wchar_t kDebuggerTestPage[] = L"files/devtools/debugger_test_page.html";
const wchar_t kEvalTestPage[] = L"files/devtools/eval_test_page.html";
const wchar_t kJsPage[] = L"files/devtools/js_page.html";
+const wchar_t kResourceTestPage[] = L"files/devtools/resource_test_page.html";
const wchar_t kSimplePage[] = L"files/devtools/simple_page.html";
class DevToolsSanityTest : public InProcessBrowserTest {
@@ -149,7 +141,7 @@
// Tests resource headers.
IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestResourceHeaders) {
- RunTest("testResourceHeaders", kDebuggerTestPage);
+ RunTest("testResourceHeaders", kResourceTestPage);
}
// Tests profiler panel.
@@ -159,13 +151,13 @@
// Tests scripts panel showing.
// http://crbug.com/16767
-IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, MAYBE_TestShowScriptsTab) {
+IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestShowScriptsTab) {
RunTest("testShowScriptsTab", kDebuggerTestPage);
}
// Tests set breakpoint.
// http://crbug.com/16767
-IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, MAYBE_TestSetBreakpoint) {
+IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestSetBreakpoint) {
RunTest("testSetBreakpoint", kDebuggerTestPage);
}
« no previous file with comments | « no previous file | chrome/test/data/devtools/debugger_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698