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

Side by Side Diff: src/trusted/validator/nacl.scons

Issue 639113003: Add nacl-clang testing to SCons (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: fix other libstdc++ test Created 6 years, 2 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
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698