diff options
Diffstat (limited to 'tests/run-tests.py')
-rwxr-xr-x | tests/run-tests.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py index f00510f2d..db5ebe34c 100755 --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -1245,9 +1245,12 @@ the last matching regex is used: elif args.platform == "qemu": test_dirs += ( "float", - "inlineasm/thumb", "ports/qemu", ) + if args.arch == "rv32imc": + test_dirs += ("inlineasm/rv32",) + else: + test_dirs += ("inlineasm/thumb",) elif args.platform == "webassembly": test_dirs += ("float", "ports/webassembly") else: |