diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-03-12 12:47:09 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-03-12 12:47:09 -0700 |
commit | 174c6def2ce5290c62513d411ead97db14ef06ee (patch) | |
tree | edebf13ef3e5503eff67d3af7007fb07ca877b15 | |
parent | 68988a8603205375341db691db5f843f4080b39a (diff) |
update test_chunking
-rwxr-xr-x | tests/runner.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py index df6c338e..89ddf2ac 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -9828,8 +9828,8 @@ f.close() try: os.environ['EMCC_DEBUG'] = '1' for asm, linkable, chunks, js_chunks in [ - (0, 0, 3, 2), (0, 1, 3, 4), - (1, 0, 3, 2), (1, 1, 3, 4) + (0, 0, 3, 2), (0, 1, 4, 4), + (1, 0, 3, 2), (1, 1, 4, 5) ]: print asm, linkable, chunks, js_chunks output, err = Popen([PYTHON, EMCC, path_from_root('tests', 'hello_libcxx.cpp'), '-O1', '-s', 'LINKABLE=%d' % linkable, '-s', 'ASM_JS=%d' % asm], stdout=PIPE, stderr=PIPE).communicate() |