use a more reasonable js chunk size when testing -O2

This commit is contained in:
Alon Zakai 2013-04-05 19:00:45 -07:00
Родитель e82c91607b
Коммит 75c7e03bc5
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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"])')