tests: Consolidate all feature check snippets under feature_check/.
This commit is contained in:
parent
1a1b48e51a
commit
a3fe307400
|
@ -29,7 +29,7 @@ def rm_f(fname):
|
||||||
def run_micropython(pyb, args, test_file):
|
def run_micropython(pyb, args, test_file):
|
||||||
if pyb is None:
|
if pyb is None:
|
||||||
# run on PC
|
# run on PC
|
||||||
if test_file.startswith('cmdline/') or test_file == 'micropython/meminfo.py':
|
if test_file.startswith(('cmdline/', 'feature_check/')) or test_file == 'micropython/meminfo.py':
|
||||||
# special handling for tests of the unix cmdline program
|
# special handling for tests of the unix cmdline program
|
||||||
|
|
||||||
# check for any cmdline options needed for this test
|
# check for any cmdline options needed for this test
|
||||||
|
@ -42,7 +42,7 @@ def run_micropython(pyb, args, test_file):
|
||||||
|
|
||||||
# run the test, possibly with redirected input
|
# run the test, possibly with redirected input
|
||||||
try:
|
try:
|
||||||
if test_file.startswith('cmdline/repl_'):
|
if 'repl_' in test_file:
|
||||||
# Need to use a PTY to test command line editing
|
# Need to use a PTY to test command line editing
|
||||||
try:
|
try:
|
||||||
import pty
|
import pty
|
||||||
|
@ -164,18 +164,17 @@ def run_tests(pyb, tests, args):
|
||||||
skip_native = False
|
skip_native = False
|
||||||
|
|
||||||
# Check if micropython.native is supported, and skip such tests if it's not
|
# Check if micropython.native is supported, and skip such tests if it's not
|
||||||
native = run_micropython(pyb, args, 'micropython/native_check.py')
|
native = run_micropython(pyb, args, 'feature_check/native_check.py')
|
||||||
if native == b'CRASH':
|
if native == b'CRASH':
|
||||||
skip_native = True
|
skip_native = True
|
||||||
|
|
||||||
# Check if emacs repl is supported, and skip such tests if it's not
|
# Check if emacs repl is supported, and skip such tests if it's not
|
||||||
t = run_micropython(pyb, args, 'cmdline/repl_emacs_check.py')
|
t = run_micropython(pyb, args, 'feature_check/repl_emacs_check.py')
|
||||||
if not 'True' in str(t, 'ascii'):
|
if not 'True' in str(t, 'ascii'):
|
||||||
skip_tests.add('cmdline/repl_emacs_check.py')
|
|
||||||
skip_tests.add('cmdline/repl_emacs_keys.py')
|
skip_tests.add('cmdline/repl_emacs_keys.py')
|
||||||
|
|
||||||
upy_byteorder = run_micropython(pyb, args, 'byteorder.py')
|
upy_byteorder = run_micropython(pyb, args, 'feature_check/byteorder.py')
|
||||||
cpy_byteorder = subprocess.check_output([CPYTHON3, 'byteorder.py'])
|
cpy_byteorder = subprocess.check_output([CPYTHON3, 'feature_check/byteorder.py'])
|
||||||
skip_endian = (upy_byteorder != cpy_byteorder)
|
skip_endian = (upy_byteorder != cpy_byteorder)
|
||||||
|
|
||||||
# Some tests shouldn't be run under Travis CI
|
# Some tests shouldn't be run under Travis CI
|
||||||
|
|
Loading…
Reference in New Issue