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

Unified Diff: trunk/src/chrome/browser/extensions/api/management/management_apitest.cc

Issue 14318002: Revert 194464 "Re-enable various ExtensionManagementApiTest tests." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 8 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: trunk/src/chrome/browser/extensions/api/management/management_apitest.cc
===================================================================
--- trunk/src/chrome/browser/extensions/api/management/management_apitest.cc (revision 194494)
+++ trunk/src/chrome/browser/extensions/api/management/management_apitest.cc (working copy)
@@ -108,7 +108,14 @@
ASSERT_TRUE(RunExtensionSubtest("management/test", "basics.html"));
}
-IN_PROC_BROWSER_TEST_F(ExtensionManagementApiTest, Uninstall) {
+// Disabled: http://crbug.com/174411
+#if defined(OS_WIN)
+#define MAYBE_Uninstall DISABLED_Uninstall
+#else
+#define MAYBE_Uninstall Uninstall
+#endif
+
+IN_PROC_BROWSER_TEST_F(ExtensionManagementApiTest, MAYBE_Uninstall) {
LoadExtensions();
ASSERT_TRUE(RunExtensionSubtest("management/test", "uninstall.html"));
}
@@ -151,7 +158,8 @@
"prohibited.html"));
}
-IN_PROC_BROWSER_TEST_F(ExtensionManagementApiTest, LaunchPanelApp) {
+// Disabled. See http://crbug.com/176023
+IN_PROC_BROWSER_TEST_F(ExtensionManagementApiTest, DISABLED_LaunchPanelApp) {
ExtensionService* service = extensions::ExtensionSystem::Get(
browser()->profile())->extension_service();
@@ -210,7 +218,13 @@
ASSERT_TRUE(app_browser->is_app());
}
-IN_PROC_BROWSER_TEST_F(ExtensionManagementApiTest, LaunchTabApp) {
+// Disabled: http://crbug.com/230165
+#if defined(OS_WIN)
+#define MAYBE_LaunchTabApp DISABLED_LaunchTabApp
+#else
+#define MAYBE_LaunchTabApp LaunchTabApp
+#endif
+IN_PROC_BROWSER_TEST_F(ExtensionManagementApiTest, MAYBE_LaunchTabApp) {
ExtensionService* service = extensions::ExtensionSystem::Get(
browser()->profile())->extension_service();
« 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