aboutsummaryrefslogtreecommitdiff
path: root/tests/test_sanity.py
diff options
context:
space:
mode:
authorDan Gohman <sunfish@google.com>2014-02-21 08:11:33 -0800
committerDan Gohman <sunfish@google.com>2014-02-25 11:58:52 -0800
commit377e75950fd04ed2705befe00b0c46f0e88a0cf7 (patch)
tree79b31c1a7413862d8e076ef07a68843876436390 /tests/test_sanity.py
parent264a5a91c450b510bcee1d257372ee5d9750879b (diff)
Update the tests to use asmjs-unknown-emscripten.
Diffstat (limited to 'tests/test_sanity.py')
-rw-r--r--tests/test_sanity.py2
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()