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

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

Issue 7621068: Disable NaCl on 32-bit linux, also disable NaCl extension/store tests for that platform. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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 | chrome/renderer/chrome_content_renderer_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_nacl_browsertest.cc
===================================================================
--- chrome/browser/extensions/extension_nacl_browsertest.cc (revision 97323)
+++ chrome/browser/extensions/extension_nacl_browsertest.cc (working copy)
@@ -93,7 +93,12 @@
};
// Test that the NaCl plugin isn't blocked for Webstore extensions.
+// DISABLED http://crbug.com/92964
+#if defined(OS_LINUX) && ARCH_CPU_32_BITS
+IN_PROC_BROWSER_TEST_F(NaClExtensionTest, DISABLED_WebStoreExtension) {
+#else
IN_PROC_BROWSER_TEST_F(NaClExtensionTest, WebStoreExtension) {
+#endif
ASSERT_TRUE(test_server()->Start());
const Extension* extension = InstallExtension(INSTALL_TYPE_FROM_WEBSTORE);
@@ -111,7 +116,12 @@
}
// Test that the NaCl plugin isn't blocked for component extensions.
+// DISABLED http://crbug.com/92964
+#if defined(OS_LINUX) && ARCH_CPU_32_BITS
+IN_PROC_BROWSER_TEST_F(NaClExtensionTest, DISABLED_ComponentExtension) {
+#else
IN_PROC_BROWSER_TEST_F(NaClExtensionTest, ComponentExtension) {
+#endif
ASSERT_TRUE(test_server()->Start());
const Extension* extension = InstallExtension(INSTALL_TYPE_COMPONENT);
@@ -121,7 +131,12 @@
}
// Test that the NaCl plugin isn't blocked for unpacked extensions.
+// DISABLED http://crbug.com/92964
+#if defined(OS_LINUX) && ARCH_CPU_32_BITS
+IN_PROC_BROWSER_TEST_F(NaClExtensionTest, DISABLED_UnpackedExtension) {
+#else
IN_PROC_BROWSER_TEST_F(NaClExtensionTest, UnpackedExtension) {
+#endif
ASSERT_TRUE(test_server()->Start());
const Extension* extension = InstallExtension(INSTALL_TYPE_UNPACKED);
« no previous file with comments | « no previous file | chrome/renderer/chrome_content_renderer_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698