| Index: chrome/renderer/chrome_content_renderer_client_unittest.cc
|
| diff --git a/chrome/renderer/chrome_content_renderer_client_unittest.cc b/chrome/renderer/chrome_content_renderer_client_unittest.cc
|
| index 3283b3957c703a605aa6b90f62c6992564d39b12..cbba28f33e097d568fe7337d51a7906f24353109 100644
|
| --- a/chrome/renderer/chrome_content_renderer_client_unittest.cc
|
| +++ b/chrome/renderer/chrome_content_renderer_client_unittest.cc
|
| @@ -62,6 +62,12 @@ void AddContentTypeHandler(WebPluginInfo* info,
|
|
|
| typedef testing::Test ChromeContentRendererClientTest;
|
|
|
| +#if !defined(__arm__)
|
| +// The ARM ABI is not quite stable, so we only allow NaCl for
|
| +// unrestricted extensions (i.e. built-in and under development).
|
| +// Disable this whole test for ARM; other ABIs give us content-type coverage.
|
| +// https://code.google.com/p/chromium/issues/detail?id=145694
|
| +// TODO(dschuff): remove this when the ARM ABI is stable
|
| TEST_F(ChromeContentRendererClientTest, NaClRestriction) {
|
| // Unknown content types have no NaCl module.
|
| {
|
| @@ -196,6 +202,7 @@ TEST_F(ChromeContentRendererClientTest, NaClRestriction) {
|
| ¶ms));
|
| }
|
| }
|
| +#endif // !defined(__arm__)
|
|
|
| } // namespace chrome
|
|
|
|
|