tests/run-natmodtests.py: Fix search for supported native tests.
Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
@@ -97,8 +97,9 @@ class TargetPyboard:
|
|||||||
def run_tests(target_truth, target, args, stats):
|
def run_tests(target_truth, target, args, stats):
|
||||||
for test_file in args.files:
|
for test_file in args.files:
|
||||||
# Find supported test
|
# Find supported test
|
||||||
|
test_file_basename = os.path.basename(test_file)
|
||||||
for k, v in TEST_MAPPINGS.items():
|
for k, v in TEST_MAPPINGS.items():
|
||||||
if test_file.find(k) != -1:
|
if test_file_basename.startswith(k):
|
||||||
test_module = k
|
test_module = k
|
||||||
test_mpy = v.replace("$(ARCH)", args.arch)
|
test_mpy = v.replace("$(ARCH)", args.arch)
|
||||||
break
|
break
|
||||||
|
|||||||
Reference in New Issue
Block a user