diff options
author | sbc@chromium.org <sbc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-10 02:42:45 +0000 |
---|---|---|
committer | sbc@chromium.org <sbc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-10 02:42:45 +0000 |
commit | 5808fe1d4178a1c9a0d01701018ca41024aed865 (patch) | |
tree | 53dffec21aec19bcf28ea3ef3b165821225ec174 /chrome/browser/nacl_host/test | |
parent | 682189baafa4ac5522e52b18438493b3a966c520 (diff) | |
download | chromium_src-5808fe1d4178a1c9a0d01701018ca41024aed865.zip chromium_src-5808fe1d4178a1c9a0d01701018ca41024aed865.tar.gz chromium_src-5808fe1d4178a1c9a0d01701018ca41024aed865.tar.bz2 |
Disable failing ARM linux tests.
These tests all fail consistently on ARM linux.
Bugs have been opened to get these fixed and re-enabled.
BUG=238453,238459,238460,238467,238469,238490
Review URL: https://chromiumcodereview.appspot.com/15021004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@199343 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/nacl_host/test')
-rw-r--r-- | chrome/browser/nacl_host/test/gdb_debug_stub_browsertest.cc | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/chrome/browser/nacl_host/test/gdb_debug_stub_browsertest.cc b/chrome/browser/nacl_host/test/gdb_debug_stub_browsertest.cc index 71f04ed..c173df7 100644 --- a/chrome/browser/nacl_host/test/gdb_debug_stub_browsertest.cc +++ b/chrome/browser/nacl_host/test/gdb_debug_stub_browsertest.cc @@ -66,16 +66,23 @@ void NaClGdbDebugStubTest::RunDebugStubTest(const std::string& nacl_module, // NaCl tests are disabled under ASAN because of qualification test. #if defined(ADDRESS_SANITIZER) # define MAYBE_Empty DISABLED_Empty -# define MAYBE_Breakpoint DISABLED_Breakpoint #else # define MAYBE_Empty Empty -# define MAYBE_Breakpoint Breakpoint #endif IN_PROC_BROWSER_TEST_F(NaClGdbDebugStubTest, MAYBE_Empty) { RunDebugStubTest("Empty", "continue"); } +#if defined(ADDRESS_SANITIZER) +# define MAYBE_Breakpoint DISABLED_Breakpoint +#elif defined(OS_LINUX) && !defined(OS_CHROMEOS) && defined(ARCH_CPU_ARM_FAMILY) +// Timing out on ARM linux: http://crbug.com/238469 +# define MAYBE_Breakpoint DISABLED_Breakpoint +#else +# define MAYBE_Breakpoint Breakpoint +#endif + IN_PROC_BROWSER_TEST_F(NaClGdbDebugStubTest, MAYBE_Breakpoint) { RunDebugStubTest("Empty", "breakpoint"); } |