2014-04-02 10:31:39 -04:00
|
|
|
#! /usr/bin/env python3
|
2014-01-27 16:53:28 -05:00
|
|
|
|
|
|
|
import os
|
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
from glob import glob
|
|
|
|
|
2014-04-04 10:28:34 -04:00
|
|
|
# Tests require at least CPython 3.3. If your default python3 executable
|
|
|
|
# is of lower version, you can point MICROPY_CPYTHON3 environment var
|
|
|
|
# to the correct executable.
|
2014-01-27 16:53:28 -05:00
|
|
|
if os.name == 'nt':
|
2014-04-04 10:28:34 -04:00
|
|
|
CPYTHON3 = os.getenv('MICROPY_CPYTHON3', 'python3.exe')
|
2014-04-16 15:24:16 -04:00
|
|
|
MP_PY = os.getenv('MICROPY_MP_PY', '../windows/micropython.exe')
|
2014-01-27 16:53:28 -05:00
|
|
|
else:
|
2014-04-03 15:06:35 -04:00
|
|
|
CPYTHON3 = os.getenv('MICROPY_CPYTHON3', 'python3')
|
2014-04-16 16:17:28 -04:00
|
|
|
MP_PY = os.getenv('MICROPY_MP_PY', '../unix/micropython')
|
2014-01-27 16:53:28 -05:00
|
|
|
|
2014-04-15 22:28:40 -04:00
|
|
|
# Set of tests that we shouldn't run under Travis CI
|
|
|
|
skip_travis_tests = set(['basics/memoryerror.py'])
|
|
|
|
|
2014-03-22 19:07:30 -04:00
|
|
|
def rm_f(fname):
|
|
|
|
if os.path.exists(fname):
|
|
|
|
os.remove(fname)
|
|
|
|
|
2014-01-27 16:53:28 -05:00
|
|
|
test_count = 0
|
|
|
|
testcase_count = 0
|
|
|
|
passed_count = 0
|
|
|
|
failed_tests = []
|
|
|
|
tests = []
|
|
|
|
|
|
|
|
if not sys.argv[1:]:
|
2014-04-02 09:23:04 -04:00
|
|
|
tests = sorted(glob('basics/*.py') + glob('io/*.py') + glob('misc/*.py'))
|
2014-01-27 16:53:28 -05:00
|
|
|
else:
|
|
|
|
tests = sys.argv[1:]
|
|
|
|
|
2014-04-03 17:44:51 -04:00
|
|
|
test_on_pyboard = False
|
|
|
|
if test_on_pyboard:
|
|
|
|
import pyboard
|
|
|
|
pyb = pyboard.Pyboard('/dev/ttyACM0')
|
|
|
|
pyb.enter_raw_repl()
|
|
|
|
|
2014-04-16 15:24:16 -04:00
|
|
|
running_under_travis = os.getenv('TRAVIS') == 'true'
|
2014-04-15 22:28:40 -04:00
|
|
|
|
2014-01-27 16:53:28 -05:00
|
|
|
for test_file in tests:
|
2014-04-15 22:28:40 -04:00
|
|
|
if running_under_travis and test_file in skip_travis_tests:
|
|
|
|
print("skip ", test_file)
|
|
|
|
continue
|
2014-01-27 16:53:28 -05:00
|
|
|
|
2014-04-03 18:51:16 -04:00
|
|
|
# run CPython
|
|
|
|
try:
|
|
|
|
output_expected = subprocess.check_output([CPYTHON3, '-B', test_file])
|
|
|
|
except subprocess.CalledProcessError:
|
|
|
|
output_expected = b'CPYTHON3 CRASH'
|
|
|
|
|
|
|
|
# run Micro Python
|
2014-04-13 08:48:33 -04:00
|
|
|
if test_on_pyboard:
|
|
|
|
pyb.enter_raw_repl()
|
|
|
|
try:
|
2014-04-13 12:46:30 -04:00
|
|
|
if test_file == 'basics/memoryerror.py':
|
2014-04-13 08:48:33 -04:00
|
|
|
# this test crashes the pyboard
|
|
|
|
output_mupy = b'CRASH'
|
|
|
|
else:
|
|
|
|
output_mupy = pyb.execfile(test_file).replace(b'\r\n', b'\n')
|
|
|
|
except pyboard.PyboardError:
|
|
|
|
output_mupy = b'CRASH\n' + output_mupy
|
|
|
|
else:
|
|
|
|
try:
|
2014-04-06 07:58:40 -04:00
|
|
|
output_mupy = subprocess.check_output([MP_PY, '-X', 'emit=bytecode', test_file])
|
2014-04-13 08:48:33 -04:00
|
|
|
except subprocess.CalledProcessError:
|
|
|
|
output_mupy = b'CRASH'
|
2014-01-27 16:53:28 -05:00
|
|
|
|
|
|
|
testcase_count += len(output_expected.splitlines())
|
|
|
|
|
2014-04-15 22:28:40 -04:00
|
|
|
test_basename = os.path.basename(test_file)
|
|
|
|
test_name = os.path.splitext(test_basename)[0]
|
|
|
|
filename_expected = test_basename + ".exp"
|
|
|
|
filename_mupy = test_basename + ".out"
|
|
|
|
|
2014-01-29 17:32:23 -05:00
|
|
|
if output_expected == output_mupy:
|
2014-01-27 16:53:28 -05:00
|
|
|
print("pass ", test_file)
|
|
|
|
passed_count += 1
|
2014-04-15 22:28:40 -04:00
|
|
|
rm_f(filename_expected)
|
|
|
|
rm_f(filename_mupy)
|
2014-01-27 16:53:28 -05:00
|
|
|
else:
|
2014-04-15 22:28:40 -04:00
|
|
|
with open(filename_expected, "w") as f:
|
2014-03-22 19:07:30 -04:00
|
|
|
f.write(str(output_expected, "ascii"))
|
2014-04-15 22:28:40 -04:00
|
|
|
with open(filename_mupy, "w") as f:
|
2014-03-22 19:07:30 -04:00
|
|
|
f.write(str(output_mupy, "ascii"))
|
2014-01-27 16:53:28 -05:00
|
|
|
print("FAIL ", test_file)
|
|
|
|
failed_tests.append(test_name)
|
|
|
|
|
|
|
|
test_count += 1
|
|
|
|
|
2014-01-29 17:32:23 -05:00
|
|
|
print("{} tests performed ({} individual testcases)".format(test_count, testcase_count))
|
2014-01-27 16:53:28 -05:00
|
|
|
print("{} tests passed".format(passed_count))
|
|
|
|
|
|
|
|
if len(failed_tests) > 0:
|
2014-01-29 17:32:23 -05:00
|
|
|
print("{} tests failed: {}".format(len(failed_tests), ' '.join(failed_tests)))
|
2014-01-27 16:53:28 -05:00
|
|
|
sys.exit(1)
|