Restrict Wasm tests to wasip1 in lit.local.cfg

This commit is contained in:
Max Desiatov
2025-07-01 15:40:05 +01:00
committed by GitHub
parent db33d703bd
commit ca3d6bcdbf

View File

@@ -20,7 +20,7 @@ if 'embedded_stdlib' not in config.available_features:
config.unsupported = True
# (3) Restrict Embedded Swift tests only to the currently supported set of test target OS's, skip them otherwise.
supported_test_os_list = ["OS=macosx", "OS=linux-gnu", "OS=none-eabi", "OS=none-elf", "OS=wasi"]
supported_test_os_list = ["OS=macosx", "OS=linux-gnu", "OS=none-eabi", "OS=none-elf", "OS=wasip1"]
if config.available_features.intersection(set(supported_test_os_list)) == set():
config.unsupported = True