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

Unified Diff: chrome/browser/history/history_extension_apitest.cc

Issue 9569033: Disable HistoryExtensionApiTest.Delete on Windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 10 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/history/history_extension_apitest.cc
diff --git a/chrome/browser/history/history_extension_apitest.cc b/chrome/browser/history/history_extension_apitest.cc
index 3df4edcb21e32d1d60f97375c0a1d462f6c80323..c821b1319ef209d263cdd22305fab5bec8ea1cd4 100644
--- a/chrome/browser/history/history_extension_apitest.cc
+++ b/chrome/browser/history/history_extension_apitest.cc
@@ -29,7 +29,13 @@ IN_PROC_BROWSER_TEST_F(HistoryExtensionApiTest, TimedSearch) {
ASSERT_TRUE(RunExtensionSubtest("history", "timed_search.html")) << message_;
}
-IN_PROC_BROWSER_TEST_F(HistoryExtensionApiTest, Delete) {
+#if defined(OS_WIN)
+// Flaky on Windows: crbug.com/88318
+#define MAYBE_Delete DISABLED_Delete
+#else
+#define MAYBE_Delete Delete
+#endif
+IN_PROC_BROWSER_TEST_F(HistoryExtensionApiTest, MAYBE_Delete) {
ASSERT_TRUE(RunExtensionSubtest("history", "delete.html")) << 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