aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/runner.py')
-rw-r--r--tests/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 6eb3df1f..982c758e 100644
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -68,7 +68,7 @@ class T(unittest.TestCase):
output = Popen([LLVM_DIS, filename + '.o', '-o=' + filename + '.o.llvm'], stdout=PIPE, stderr=STDOUT).communicate()[0]
if DEBUG: print output
# Run Emscripten
- emscripten(filename + '.o.llvm', filename + '.o.js', JS_ENGINE)
+ emscripten(filename + '.o.llvm', filename + '.o.js', PARSER_ENGINE)
output = open(filename + '.o.js').read()
if output_processor is not None:
output_processor(output)