summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-04-06 12:58:40 +0100
committerDamien George <damien.p.george@gmail.com>2014-04-06 12:58:40 +0100
commitcdd96dff2c017c952a238989c10f70143a8dd7d3 (patch)
tree40f3bf8b2dec68b14ff7ae66ef667b65d90b6527 /tests
parent65cad12d388423f7d9b04a5ae3d7c1b5b176a2da (diff)
py: Implement more features in native emitter.
On x64, native emitter now passes 70 of the tests.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/run-tests2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run-tests b/tests/run-tests
index 22ddbe58e..2866a6c48 100755
--- a/tests/run-tests
+++ b/tests/run-tests
@@ -51,7 +51,7 @@ for test_file in tests:
pyb.enter_raw_repl()
output_mupy = pyb.execfile(test_file).replace(b'\r\n', b'\n')
else:
- output_mupy = subprocess.check_output([MP_PY, test_file])
+ output_mupy = subprocess.check_output([MP_PY, '-X', 'emit=bytecode', test_file])
except subprocess.CalledProcessError:
output_mupy = b'CRASH'