diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-11-24 22:14:32 +0100 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-12-07 14:23:18 -0800 |
commit | ff39897223947c89af7066f3a9421db28e796605 (patch) | |
tree | dee96e1cf6ba1f9c8a6f204b305d132d5fdc538b /tests/runner.py | |
parent | 32eb49ba04865bd99dc4254661e83d65738b1fd5 (diff) |
add asm test suite
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index 1480afe7..102fc470 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -7488,6 +7488,9 @@ TT = %s # Make one run with -O2, but without closure (we enable closure in specific tests, otherwise on everything it is too slow) exec('o2 = make_run("o2", compiler=CLANG, emcc_args=["-O2", "--closure", "0"])') + # asm.js + exec('asm = make_run("asm", compiler=CLANG, emcc_args=["-O2", "--closure", "0", "-s", "ASM_JS=1"])') + # Make custom runs with various options for compiler, quantum, embetter, typed_arrays, llvm_opts in [ (CLANG, 1, 1, 0, 0), |