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

Side by Side Diff: ppapi/native_client/tests/breakpad_crash_test/nacl.scons

Issue 136813004: Reenable linux_aura on the main builders. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/installer/linux/rpm/expected_deps_x86_64 ('k') | tools/lsan/suppressions.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 import os 6 import os
7 7
8 Import('env') 8 Import('env')
9 9
10 if env.Bit('host_windows') or env.Bit('host_mac'): 10 if env.Bit('host_windows') or env.Bit('host_mac'):
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 node = env.PPAPIBrowserTester( 92 node = env.PPAPIBrowserTester(
93 'breakpad_untrusted_crash_test.out', 93 'breakpad_untrusted_crash_test.out',
94 python_tester_script=env.File('crash_dump_tester.py'), 94 python_tester_script=env.File('crash_dump_tester.py'),
95 url='untrusted_crash.html', 95 url='untrusted_crash.html',
96 nmf_names=['crash_test'], 96 nmf_names=['crash_test'],
97 files=[GetNexeByName('crash_test'), 97 files=[GetNexeByName('crash_test'),
98 env.File('untrusted_crash.html')], 98 env.File('untrusted_crash.html')],
99 args=platform_args + ['--expected_crash_dumps=0']) 99 args=platform_args + ['--expected_crash_dumps=0'])
100 env.AddNodeToTestSuite( 100 env.AddNodeToTestSuite(
101 node, ['chrome_browser_tests'], 'run_breakpad_untrusted_crash_test', 101 node, ['chrome_browser_tests'], 'run_breakpad_untrusted_crash_test',
102 # This currently reliably fails in linux_aura configurations, probably for
103 # the same reasons that the previous test fails.
104 #
105 # See bug: https://code.google.com/p/chromium/issues/detail?id=303342
102 is_broken=env.PPAPIBrowserTesterIsBroken() or 106 is_broken=env.PPAPIBrowserTesterIsBroken() or
103 env.Bit('running_on_valgrind')) 107 env.Bit('running_on_valgrind') or
108 env.Bit('host_linux'))
OLDNEW
« no previous file with comments | « chrome/installer/linux/rpm/expected_deps_x86_64 ('k') | tools/lsan/suppressions.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698