We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cec90a commit 76d5538Copy full SHA for 76d5538
test/run-wasmtime-wasi-tests.sh
@@ -18,7 +18,11 @@ test -d "${WASM_DIR}" || fetch_test_bin
18
19
SKIPLIST=
20
BLACKLIST="${THIS_DIR}/wasmtime-wasi-tests-blacklist.txt"
21
-BLACKLIST="${BLACKLIST} ${THIS_DIR}/wasmtime-wasi-tests-blacklist-$(uname -s).txt"
+
22
+OS_BLACKLIST="${THIS_DIR}/wasmtime-wasi-tests-blacklist-$(uname -s).txt"
23
+if [ -f ${PLATFORM_BLACKLIST} ]; then
24
+ BLACKLIST="${BLACKLIST} ${OS_BLACKLIST}"
25
+fi
26
27
if [ "${WASM_ON_WASM:-0}" -ne 0 ]; then
28
run_wasi_test()
0 commit comments