aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-04-05 19:00:45 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-04-05 19:00:45 -0700
commit75c7e03bc5e282ee3969924c225a0e4545d5258b (patch)
treed2fc0154aced10f511aae60825a6b46e9aeb6deb
parente82c91607bc09b86b4959c8b1d6d12a7fdbe8852 (diff)
use a more reasonable js chunk size when testing -O2
-rwxr-xr-xtests/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py
index e0484cd3..cf46af2c 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -8918,7 +8918,7 @@ TT = %s
exec('o1 = make_run("o1", compiler=CLANG, emcc_args=["-O1", "-s", "SAFE_HEAP=1"])')
# 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", "-s", "JS_CHUNK_SIZE=10"])')
+ exec('o2 = make_run("o2", compiler=CLANG, emcc_args=["-O2", "-s", "JS_CHUNK_SIZE=1024"])')
# asm.js
exec('asm2 = make_run("asm2", compiler=CLANG, emcc_args=["-O2", "-s", "ASM_JS=1"])')