aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-06-06 19:46:05 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-06-07 10:09:03 -0700
commit2c51c1eeb9b761e99ae37a5fcd1cdc40b121f746 (patch)
treeb016d9f6a56617a302548717220489c15ce3cc1f /tests/runner.py
parentb970a019bfcf5413dec74f944a25cef633927f1c (diff)
eliminate loop helper variables
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-xtests/runner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py
index b3485657..53eb56fe 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -13095,7 +13095,7 @@ elif 'benchmark' in str(sys.argv):
Building.COMPILER_TEST_OPTS = []
- TEST_REPS = 1
+ TEST_REPS = 2
TOTAL_TESTS = 8
# standard arguments for timing:
@@ -13160,7 +13160,7 @@ elif 'benchmark' in str(sys.argv):
'-O2', '-s', 'DOUBLE_MODE=0', '-s', 'PRECISE_I64_MATH=0',
'--llvm-lto', '1', '--memory-init-file', '0',
'-s', 'TOTAL_MEMORY=128*1024*1024',
- '--closure', '1', '-g',
+ '--closure', '1',
'-o', final_filename] + shared_args + emcc_args, stdout=PIPE, stderr=self.stderr_redirect).communicate()
assert os.path.exists(final_filename), 'Failed to compile file: ' + output[0]