diff options
| -rw-r--r-- | ports/qemu-arm/tests_profile.txt | 4 | ||||
| -rw-r--r-- | ports/qemu-riscv/tests_profile.txt | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/ports/qemu-arm/tests_profile.txt b/ports/qemu-arm/tests_profile.txt index c55185a0e..101943b7c 100644 --- a/ports/qemu-arm/tests_profile.txt +++ b/ports/qemu-arm/tests_profile.txt @@ -1,10 +1,10 @@ # Port-specific test directories. -test_dirs.add(("inlineasm", "qemu-arm")) +test_dirs.update(("inlineasm", "ports/qemu-arm")) # Port-specific tests exclusion list. -exclude_tests.add( +exclude_tests.update( ( # inline asm FP tests (require Cortex-M4) "inlineasm/asmfpaddsub.py", diff --git a/ports/qemu-riscv/tests_profile.txt b/ports/qemu-riscv/tests_profile.txt index 1079ca181..3d16e971b 100644 --- a/ports/qemu-riscv/tests_profile.txt +++ b/ports/qemu-riscv/tests_profile.txt @@ -1,3 +1,7 @@ +# Port-specific test directories. + +test_dirs.update(()) + # Port-specific tests exclusion list. -exclude_tests = exclude_tests.union(()) +exclude_tests.update(()) |
