diff options
author | Damien George <damien@micropython.org> | 2022-05-26 12:31:31 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2022-05-26 12:54:43 +1000 |
commit | 065df5568c258a9f20a9f02b10be9b16dc95da6f (patch) | |
tree | efa724ad7407fa483181c504fdbd5faa39dce601 /tests/run-tests.py | |
parent | 20d9f3409a9b2fdd4079e05acb4d24b2877fb5c5 (diff) |
tests: Move native while test from pybnative to micropython.
And make it so this test can run on any target.
LED and time testing has been removed from this test, that can now be
tested using: ./run-tests.py --via-mpy --emit native.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/run-tests.py')
-rwxr-xr-x | tests/run-tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py index 5b08ad2bb..7377e8ae2 100755 --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -941,7 +941,7 @@ the last matching regex is used: ) if args.target == "pyboard": # run pyboard tests - test_dirs += ("float", "stress", "pyb", "pybnative", "inlineasm") + test_dirs += ("float", "stress", "pyb", "inlineasm") elif args.target in ("renesas-ra"): test_dirs += ("float", "inlineasm", "renesas-ra") elif args.target == "rp2": |