Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # Copyright 2011 The Native Client Authors. All rights reserved. | 2 # Copyright 2011 The Native Client 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('env') | 6 Import('env') |
| 7 | 7 |
| 8 if 'TRUSTED_ENV' not in env: | 8 if 'TRUSTED_ENV' not in env: |
| 9 Return() | 9 Return() |
| 10 | 10 |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 23 env['TRUSTED_ENV'].File('${STAGING_DIR}/ncval_new${PROGSUFFIX}'),] | 23 env['TRUSTED_ENV'].File('${STAGING_DIR}/ncval_new${PROGSUFFIX}'),] |
| 24 | 24 |
| 25 node = env.CommandTest( | 25 node = env.CommandTest( |
| 26 'ncval_annotate_test.out', | 26 'ncval_annotate_test.out', |
| 27 command=['${PYTHON}', env.File('ncval_annotate_test.py'), '-v'], | 27 command=['${PYTHON}', env.File('ncval_annotate_test.py'), '-v'], |
| 28 extra_deps=dependencies, | 28 extra_deps=dependencies, |
| 29 osenv=env_vars) | 29 osenv=env_vars) |
| 30 env.AddNodeToTestSuite(node, ['small_tests'], 'run_ncval_annotate_test', | 30 env.AddNodeToTestSuite(node, ['small_tests'], 'run_ncval_annotate_test', |
| 31 # PNaCl does not allow the inline assembly that | 31 # PNaCl does not allow the inline assembly that |
| 32 # we use to test this. | 32 # we use to test this. |
| 33 is_broken=env.Bit('bitcode')) | 33 # The test also hardcodes use of nacl-gcc and doesn't |
| 34 # really need to run more than once anyway. | |
| 35 is_broken=env.Bit('bitcode') or env.Bit('nacl_clang')) | |
|
Nick Bray (chromium)
2014/10/10 19:53:25
Asking around, it may be possible to unhack this?
Derek Schuff
2014/10/10 20:56:24
and in fact it did work when i changed the hardcod
| |
| OLD | NEW |