Skip to content

Commit b10da62

Browse files
committed
Add OS=wasi as supported to embedded/lit.local.cfg
There's a predefined list of supported platforms that WASI should be added now that it has an official Embedded Swift SDK.
1 parent ce16289 commit b10da62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/embedded/lit.local.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if 'embedded_stdlib' not in config.available_features:
2020
config.unsupported = True
2121

2222
# (3) Restrict Embedded Swift tests only to the currently supported set of test target OS's, skip them otherwise.
23-
supported_test_os_list = ["OS=macosx", "OS=linux-gnu", "OS=none-eabi", "OS=none-elf"]
23+
supported_test_os_list = ["OS=macosx", "OS=linux-gnu", "OS=none-eabi", "OS=none-elf", "OS=wasi"]
2424
if config.available_features.intersection(set(supported_test_os_list)) == set():
2525
config.unsupported = True
2626

0 commit comments

Comments
 (0)