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

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

Issue 3438004: ExtensionGalleryInstallApiTest.InstallAndUninstall is failing on 'XP Tests' bot. (Closed)
Patch Set: Created 10 years, 3 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_gallery_install_apitest.cc
diff --git a/chrome/browser/extensions/extension_gallery_install_apitest.cc b/chrome/browser/extensions/extension_gallery_install_apitest.cc
index 8c704a98102d4558ad17cb11dcf27f8b8c78c53a..916cda88dac62d045a97b1a6cc3c4d37f0e7a9f3 100644
--- a/chrome/browser/extensions/extension_gallery_install_apitest.cc
+++ b/chrome/browser/extensions/extension_gallery_install_apitest.cc
@@ -18,7 +18,14 @@ class ExtensionGalleryInstallApiTest : public ExtensionApiTest {
}
};
-IN_PROC_BROWSER_TEST_F(ExtensionGalleryInstallApiTest, InstallAndUninstall) {
+// http://crbug.com/55642 - failing on XP.
+#if defined (OS_WIN)
+#define MAYBE_InstallAndUninstall FAILS_InstallAndUninstall
+#else
+#define MAYBE_InstallAndUninstall InstallAndUninstall
+#endif
+IN_PROC_BROWSER_TEST_F(ExtensionGalleryInstallApiTest,
+ MAYBE_InstallAndUninstall) {
host_resolver()->AddRule("www.example.com", "127.0.0.1");
ASSERT_TRUE(test_server()->Start());
« 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