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

Unified Diff: chrome/browser/extensions/api/processes/processes_apitest.cc

Issue 1836133002: Disable ProcessesApiTest.Processes test on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/api/processes/processes_apitest.cc
diff --git a/chrome/browser/extensions/api/processes/processes_apitest.cc b/chrome/browser/extensions/api/processes/processes_apitest.cc
index 23d95dcc1c8bf66ba1dd64e580d6d3107763f964..074d1ebbeb8f6655bbe1768572dc8c5ca84b9ab1 100644
--- a/chrome/browser/extensions/api/processes/processes_apitest.cc
+++ b/chrome/browser/extensions/api/processes/processes_apitest.cc
@@ -26,7 +26,14 @@ class ProcessesApiTest : public ExtensionApiTest {
DISALLOW_COPY_AND_ASSIGN(ProcessesApiTest);
};
-IN_PROC_BROWSER_TEST_F(ProcessesApiTest, Processes) {
+
+// This test is flaky on Win7 Tests (dbg)(1). https://crbug.com/598445
+#if defined(OS_WIN)
+#define MAYBE_Processes DISABLED_Processes
+#else
+#define MAYBE_Processes Processes
+#endif
+IN_PROC_BROWSER_TEST_F(ProcessesApiTest, MAYBE_Processes) {
ASSERT_TRUE(RunExtensionTest("processes/api")) << message_;
}
« 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