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

Unified Diff: chrome/browser/component_updater/test/component_installers_unittest.cc

Issue 12377066: Disable PepperFlashCheck on Win64 build until it's supported (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 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/component_updater/test/component_installers_unittest.cc
===================================================================
--- chrome/browser/component_updater/test/component_installers_unittest.cc (revision 185808)
+++ chrome/browser/component_updater/test/component_installers_unittest.cc (working copy)
@@ -38,8 +38,15 @@
#endif
}
+// TODO(jschuh): Get Pepper Flash supported on Win64 build. crbug.com/179716
+#if defined(OS_WIN) && defined(ARCH_CPU_X86_64)
+#define MAYBE_PepperFlashCheck DISABLED_PepperFlashCheck
+#else
+#define MAYBE_PepperFlashCheck PepperFlashCheck
+#endif
+
// TODO(viettrungluu): Separate out into two separate tests; use a test fixture.
-TEST(ComponentInstallerTest, PepperFlashCheck) {
+TEST(ComponentInstallerTest, MAYBE_PepperFlashCheck) {
MessageLoop message_loop;
content::TestBrowserThread ui_thread(BrowserThread::UI, &message_loop);
« 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