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 ac3a821 commit bb91719Copy full SHA for bb91719
test/run-wasi-testsuite.sh
@@ -33,6 +33,12 @@ for t in ${TESTS}; do
33
TESTDIRS="${TESTDIRS} ${DIR}/tests/${t}"
34
done
35
36
+# Note: test directories left from the previous runs can confuse
37
+# the test runner. https://github.com/WebAssembly/wasi-testsuite/issues/81
38
+# until it gets fixed in the upstream, use find, which doesn't follow
39
+# symlinks.
40
+find ${DIR}/tests -name "*.cleanup" | xargs rm -r
41
+
42
virtualenv venv
43
. ./venv/bin/activate
44
python3 -m pip install -r ${DIR}/test-runner/requirements.txt
0 commit comments