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

Unified Diff: chrome/browser/extensions/api/notifications/notifications_apitest.cc

Issue 2691953004: Disable NotificationsApiTest.TestBasicUsage for Linux debug build (Closed)
Patch Set: Created 3 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/extensions/api/notifications/notifications_apitest.cc
diff --git a/chrome/browser/extensions/api/notifications/notifications_apitest.cc b/chrome/browser/extensions/api/notifications/notifications_apitest.cc
index 39abdd96447dad68e53b172977c8e7e357a62fd0..3d372dfb4f1d18255e89c22523cf77d51936c852 100644
--- a/chrome/browser/extensions/api/notifications/notifications_apitest.cc
+++ b/chrome/browser/extensions/api/notifications/notifications_apitest.cc
@@ -188,7 +188,13 @@ class NotificationsApiTest : public ExtensionApiTest {
} // namespace
-IN_PROC_BROWSER_TEST_F(NotificationsApiTest, TestBasicUsage) {
+// http://crbug.com/691913
+#if defined(OS_LINUX) && !defined(NDEBUG)
+#define MAYBE_TestBasicUsage DISABLED_TestBasicUsage
+#else
+#define MAYBE_TestBasicUsage TestBasicUsage
+#endif
+IN_PROC_BROWSER_TEST_F(NotificationsApiTest, MAYBE_TestBasicUsage) {
ASSERT_TRUE(RunExtensionTest("notifications/api/basic_usage")) << 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