diff options
| author | Damien George <damien.p.george@gmail.com> | 2014-04-06 12:58:40 +0100 |
|---|---|---|
| committer | Damien George <damien.p.george@gmail.com> | 2014-04-06 12:58:40 +0100 |
| commit | cdd96dff2c017c952a238989c10f70143a8dd7d3 (patch) | |
| tree | 40f3bf8b2dec68b14ff7ae66ef667b65d90b6527 /tests | |
| parent | 65cad12d388423f7d9b04a5ae3d7c1b5b176a2da (diff) | |
py: Implement more features in native emitter.
On x64, native emitter now passes 70 of the tests.
Diffstat (limited to 'tests')
| -rwxr-xr-x | tests/run-tests | 2 |
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' |
