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

Unified Diff: chrome/browser/extensions/extension_functional_browsertest.cc

Issue 2419433002: Linux Browser Tests: Disable flaky test ExtensionFunctionalTest.TestSetExtensionsState (Closed)
Patch Set: Created 4 years, 2 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/extension_functional_browsertest.cc
diff --git a/chrome/browser/extensions/extension_functional_browsertest.cc b/chrome/browser/extensions/extension_functional_browsertest.cc
index debfa7a6c30f7317e569ee05d832c9051c41726e..120418c6b52008b8cb26d13152a2a2eabb48821b 100644
--- a/chrome/browser/extensions/extension_functional_browsertest.cc
+++ b/chrome/browser/extensions/extension_functional_browsertest.cc
@@ -75,7 +75,13 @@ IN_PROC_BROWSER_TEST_F(ExtensionFunctionalTest,
EXPECT_FALSE(util::IsIncognitoEnabled(last_loaded_extension_id(), profile()));
}
-IN_PROC_BROWSER_TEST_F(ExtensionFunctionalTest, TestSetExtensionsState) {
+// Failing on Linux: http://crbug.com/654945
+#if defined(OS_LINUX)
+#define MAYBE_TestSetExtensionsState DISABLED_TestSetExtensionsState
+#else
+#define MAYBE_TestSetExtensionsState TestSetExtensionsState
+#endif
+IN_PROC_BROWSER_TEST_F(ExtensionFunctionalTest, MAYBE_TestSetExtensionsState) {
InstallExtensionSilently(extension_service(), "google_talk.crx");
// Disable the extension and verify.
« 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