aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-01-10 14:07:02 -0800
committerAlon Zakai <alonzakai@gmail.com>2013-01-10 14:07:02 -0800
commit21bb26dbc4bc4e897b2f44d38b21a3124b5d267b (patch)
treed0ac032156d75067cc40d8a842f39e086fc29624 /tests
parent60c6395d05545c8fd8ad277b026d79fe4ffdbd38 (diff)
call library aliases directly by their target name
Diffstat (limited to 'tests')
-rwxr-xr-xtests/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 24fbee95..93827ba5 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -10518,7 +10518,7 @@ elif 'benchmark' in str(sys.argv):
try_delete(final_filename)
output = Popen([PYTHON, EMCC, filename, #'-O3',
- '-O2', '-s', 'INLINING_LIMIT=0', '-s', 'DOUBLE_MODE=0', '-s', 'PRECISE_I64_MATH=0',
+ '-O2', '-s', 'INLINING_LIMIT=0', '-s', 'DOUBLE_MODE=0', '-s', 'PRECISE_I64_MATH=0',# '-s', 'ASM_JS=1',
'-s', 'TOTAL_MEMORY=128*1024*1024', '-s', 'FAST_MEMORY=10*1024*1024',
'-o', final_filename] + emcc_args, stdout=PIPE, stderr=self.stderr_redirect).communicate()
assert os.path.exists(final_filename), 'Failed to compile file: ' + output[0]