aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-07-20 22:45:26 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-07-20 22:45:26 -0700
commit0902d6c3707d3350f40a35ed04a9eb125f36fad5 (patch)
tree587dfe9203366776177de7c99567a033c03c7dca /tests/runner.py
parent66171f5e8831142fb77e5b47181e1ea8b6c3b9fa (diff)
save all versions in test_outline
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-xtests/runner.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 89515e88..3d32b830 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -10858,6 +10858,7 @@ f.close()
for outlining_limit in [2000, 5000, 0]:
Popen([PYTHON, EMCC, src] + libs + ['-o', 'test.js', '-O2', '-g3', '-s', 'OUTLINING_LIMIT=%d' % outlining_limit] + args).communicate()
assert os.path.exists('test.js')
+ shutil.copyfile('test.js', '%d_test.js' % outlining_limit)
for engine in JS_ENGINES:
out = run_js('test.js', engine=engine, stderr=PIPE, full_output=True)
self.assertContained(expected, out)