diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-10-22 15:40:36 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-10-22 15:40:36 -0700 |
commit | 9ff4aded21523a6ca1f3ae642cd70905d6fe8eef (patch) | |
tree | dfb72d0a2336880b2211553dc3ffe42d2ec8108c /tests | |
parent | e48db465e2a2f13b2e9c4797d3334fc6d2b29b6d (diff) | |
parent | 7d693595f7648f47ea98e4c4b7284e5c41773b69 (diff) |
Merge branch 'master' into incoming
Diffstat (limited to 'tests')
-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 cb788dbb..12febeee 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -9342,8 +9342,8 @@ elif 'benchmark' in str(sys.argv): final_filename = os.path.join(dirname, name + '.js') try_delete(final_filename) - output = Popen(['python', EMCC, filename, '-O3', - #'-O2', '-s', 'INLINING_LIMIT=0', '-s', 'DOUBLE_MODE=0', '-s', 'PRECISE_I64_MATH=0', + output = Popen(['python', EMCC, filename, #'-O3', + '-O2', '-s', 'INLINING_LIMIT=0', '-s', 'DOUBLE_MODE=0', '-s', 'PRECISE_I64_MATH=0', '-s', 'TOTAL_MEMORY=100*1024*1024', '-s', 'FAST_MEMORY=10*1024*1024', '-o', final_filename] + emcc_args, stdout=PIPE, stderr=self.stderr_redirect).communicate() assert os.path.exists(final_filename), 'Failed to compile file: ' + output[0] |