diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-03-09 11:15:39 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-03-09 11:15:39 -0800 |
commit | d937b1804545832eea96713850e04ee3f484ffb8 (patch) | |
tree | 3570e771ebd534f8f970ccc2e7f420bf8a897275 | |
parent | 99ac7e40feb2739edfecd0c3f962ec9f666607f4 (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 02558650..d268672a 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -9688,8 +9688,8 @@ f.close() try: os.environ['EMCC_DEBUG'] = '1' for asm, linkable, chunks, js_chunks in [ - (0, 0, 3, 2), (0, 1, 4, 4), - (1, 0, 3, 2), (1, 1, 4, 5) + (0, 0, 3, 2), (0, 1, 3, 4), + (1, 0, 3, 2), (1, 1, 3, 4) ]: 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() |