diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-11-09 11:43:09 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-11-09 11:43:09 -0800 |
commit | c4114043e9b5dea715b4a8b4328ab360ad3fd687 (patch) | |
tree | 176a87302c423b009305b2bf2ada148e531ef75b | |
parent | d969c64b05697855d6455863fac62b74991dd9e7 (diff) |
make asm2f do full optimization, including minification
-rw-r--r-- | tests/test_core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index b7b2f57e..4b76a9db 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -10738,7 +10738,7 @@ o2 = make_run("o2", compiler=CLANG, emcc_args=["-O2", "-s", "ASM_JS=0", "-s", "J asm1 = make_run("asm1", compiler=CLANG, emcc_args=["-O1"]) asm1f = make_run("asm1f", compiler=CLANG, emcc_args=["-O1", "-s", "PRECISE_F32=1"]) asm2 = make_run("asm2", compiler=CLANG, emcc_args=["-O2"]) -asm2f = make_run("asm2f", compiler=CLANG, emcc_args=["-O2", "-s", "PRECISE_F32=1", "-g"]) # TODO: collapse into another test subsuite +asm2f = make_run("asm2f", compiler=CLANG, emcc_args=["-O2", "-s", "PRECISE_F32=1"]) # TODO: collapse into another test subsuite asm2g = make_run("asm2g", compiler=CLANG, emcc_args=["-O2", "-g", "-s", "ASSERTIONS=1", "--memory-init-file", "1", "-s", "CHECK_HEAP_ALIGN=1"]) asm2x86 = make_run("asm2x86", compiler=CLANG, emcc_args=["-O2", "-g", "-s", "CHECK_HEAP_ALIGN=1"], env={"EMCC_LLVM_TARGET": "i386-pc-linux-gnu"}) |