| OLD | NEW |
| 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 Loading... |
| 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')) |
| OLD | NEW |