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

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

Issue 1409363008: Refactor update_client to eliminate banned C++11 library features. (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..d9b051e5664517f710f2cc0b1c8b54544cee5993 100644
--- a/chrome/browser/extensions/api/processes/processes_apitest.cc
+++ b/chrome/browser/extensions/api/processes/processes_apitest.cc
@@ -26,7 +26,13 @@ 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