diff options
author | Dan Gohman <sunfish@google.com> | 2014-02-21 08:11:33 -0800 |
---|---|---|
committer | Dan Gohman <sunfish@google.com> | 2014-02-25 11:58:52 -0800 |
commit | 377e75950fd04ed2705befe00b0c46f0e88a0cf7 (patch) | |
tree | 79b31c1a7413862d8e076ef07a68843876436390 /tests/test_sanity.py | |
parent | 264a5a91c450b510bcee1d257372ee5d9750879b (diff) |
Update the tests to use asmjs-unknown-emscripten.
Diffstat (limited to 'tests/test_sanity.py')
-rw-r--r-- | tests/test_sanity.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_sanity.py b/tests/test_sanity.py index 5713c99c..07582d28 100644 --- a/tests/test_sanity.py +++ b/tests/test_sanity.py @@ -489,7 +489,7 @@ fi try: old = os.environ.get('EMCC_LLVM_TARGET') or '' for compiler in [EMCC, EMXX]: - for target in ['i386-pc-linux-gnu', 'le32-unknown-nacl']: + for target in ['i386-pc-linux-gnu', 'asmjs-unknown-emscripten']: print compiler, target os.environ['EMCC_LLVM_TARGET'] = target out, err = Popen([PYTHON, EMCC, path_from_root('tests', 'hello_world.cpp'), '-v'], stdout=PIPE, stderr=PIPE).communicate() |