aboutsummaryrefslogtreecommitdiff
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:32:15 -0700
commit0708b232eef021cc7e1302b02091e6a84ceeb1aa (patch)
tree2d0f62b818b17d046f07a14914f3619cbb84dbeb
parentb0d268d121d8868be33d8633b09499b34a4db45f (diff)
fix test_static_link
-rwxr-xr-xtests/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 9e04c929..5a3dfb3d 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -10631,7 +10631,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: