aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
authoralon@honor <none@none>2010-09-09 21:22:12 -0700
committeralon@honor <none@none>2010-09-09 21:22:12 -0700
commit5bc458f7a3675ea2f36c71e4456fc1948526cae7 (patch)
tree824f3b2f9cdf48d05a45971e1025f20ccbd0c1fa /tests/runner.py
parenta523ad539ccf91b7a162ac1ac18f9e1bf88f5147 (diff)
fix some regexps that v8 and sm do not agree on
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)