diff options
author | erg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-18 03:40:17 +0000 |
---|---|---|
committer | erg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-18 03:40:17 +0000 |
commit | f2f33ffcc7d344772f2245a09f8b24f2bbdafba7 (patch) | |
tree | 49f6f77f29c8af9d28fb000c1417ebc1f939913d /ppapi/native_client | |
parent | 4f5ed1063581ef27dc0e8b9928829889216568e2 (diff) | |
download | chromium_src-f2f33ffcc7d344772f2245a09f8b24f2bbdafba7.zip chromium_src-f2f33ffcc7d344772f2245a09f8b24f2bbdafba7.tar.gz chromium_src-f2f33ffcc7d344772f2245a09f8b24f2bbdafba7.tar.bz2 |
Reenable linux_aura on the main builders. (Again).
We upgraded the eu-strip binary so that it can deal with binaries that
are more than two gigabytes large. This should fix the crash on the
Google Chrome Linux builder, which was the only bot to break last night.
BUG=319075,125106,303342,318961
NOTRY=True
Review URL: https://codereview.chromium.org/138033023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245737 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/native_client')
-rw-r--r-- | ppapi/native_client/tests/breakpad_crash_test/nacl.scons | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ppapi/native_client/tests/breakpad_crash_test/nacl.scons b/ppapi/native_client/tests/breakpad_crash_test/nacl.scons index 308e888..a6bfd1c 100644 --- a/ppapi/native_client/tests/breakpad_crash_test/nacl.scons +++ b/ppapi/native_client/tests/breakpad_crash_test/nacl.scons @@ -99,5 +99,10 @@ node = env.PPAPIBrowserTester( args=platform_args + ['--expected_crash_dumps=0']) env.AddNodeToTestSuite( node, ['chrome_browser_tests'], 'run_breakpad_untrusted_crash_test', + # This currently reliably fails in linux_aura configurations, probably for + # the same reasons that the previous test fails. + # + # See bug: https://code.google.com/p/chromium/issues/detail?id=303342 is_broken=env.PPAPIBrowserTesterIsBroken() or - env.Bit('running_on_valgrind')) + env.Bit('running_on_valgrind') or + env.Bit('host_linux')) |