diff options
author | bbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-08 22:26:54 +0000 |
---|---|---|
committer | bbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-08 22:26:54 +0000 |
commit | ea2b08538c59460d92553a2af67a19417e9c50d9 (patch) | |
tree | 4c418ea028c48aafd68a08e892291b4af51cf19f /ppapi/native_client | |
parent | 0de360c6b0b08c2720bcb64cb9f13dbfeca90451 (diff) | |
download | chromium_src-ea2b08538c59460d92553a2af67a19417e9c50d9.zip chromium_src-ea2b08538c59460d92553a2af67a19417e9c50d9.tar.gz chromium_src-ea2b08538c59460d92553a2af67a19417e9c50d9.tar.bz2 |
Disable breakpad_crash_test on Linux and Windows.
This test fails with the new NaCl IPC proxy.
BUG=160089
TEST=nacl_integration
Review URL: https://codereview.chromium.org/11293185
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166782 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/native_client')
-rw-r--r-- | ppapi/native_client/tests/breakpad_crash_test/nacl.scons | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ppapi/native_client/tests/breakpad_crash_test/nacl.scons b/ppapi/native_client/tests/breakpad_crash_test/nacl.scons index 382e9be..710b00a 100644 --- a/ppapi/native_client/tests/breakpad_crash_test/nacl.scons +++ b/ppapi/native_client/tests/breakpad_crash_test/nacl.scons @@ -34,7 +34,7 @@ node = env.PPAPIBrowserTester( env.File('trusted_crash_in_startup.html')], osenv='NACL_CRASH_TEST=1', args=platform_args + ['--expected_crash_dumps=%i' % expected_crash_dumps]) -# This test fails with the IPC proxy on Mac. +# This test fails with the IPC proxy on Mac and Linux. # http://crbug.com/160089 env.AddNodeToTestSuite( node, @@ -42,7 +42,8 @@ env.AddNodeToTestSuite( 'run_breakpad_trusted_crash_in_startup_test', is_broken=env.PPAPIBrowserTesterIsBroken() or env.Bit('running_on_valgrind') or - env.Bit('host_mac')) + env.Bit('host_mac') or + env.Bit('host_linux')) # This tests a crash that occurs inside a syscall handler. # Ultimately this should be recognised as a crash caused by untrusted code. |