aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-07-16 16:28:32 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-07-16 16:28:32 -0700
commit7ccc0d908a849bdb9b9cc17dfa0cae0ba17ad7d0 (patch)
treeb6993cad8c51b20d7e91f2af945ce5f8dd96a572 /tests/runner.py
parent438d0a58916072936de1380306134050ffa3ae28 (diff)
fix test_static_link
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-xtests/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py
index dc406c85..d56c27ee 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -10626,7 +10626,7 @@ f.close()
Popen([PYTHON, EMLINK, 'main.js', 'side.js', 'together.js'], stdout=PIPE).communicate()
assert os.path.exists('together.js')
for engine in JS_ENGINES:
- out = run_js('together.js', engine=SPIDERMONKEY_ENGINE, stderr=PIPE, full_output=True)
+ out = run_js('together.js', engine=engine, stderr=PIPE, full_output=True)
self.assertContained(expected, out)
if engine == SPIDERMONKEY_ENGINE: self.validate_asmjs(out)
if first: