diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-01-18 15:23:34 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-01-18 15:23:34 -0800 |
commit | c39afee38bb49a6fce996bbd276065f2f5603178 (patch) | |
tree | 0eb477a3107f1784bd830429ee1859a87cd5169f /tests/runner.py | |
parent | 528799c0d925fd03231a876fc38bb8398f92c81e (diff) |
add return in functions whose types return but do not actually return
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 0b801a7f..243337ae 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -10596,7 +10596,7 @@ elif 'benchmark' in str(sys.argv): try_delete(final_filename) output = Popen([PYTHON, EMCC, filename, #'-O3', '-O2', '-s', 'INLINING_LIMIT=0', '-s', 'DOUBLE_MODE=0', '-s', 'PRECISE_I64_MATH=0', - # '-s', 'ASM_JS=1', '-s', 'USE_MATH_IMUL=1', + '-s', 'ASM_JS=1', '-s', 'USE_MATH_IMUL=1', '-s', 'TOTAL_MEMORY=128*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] |