We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After a recent change, tests/wasi-fyi/test.sh is broken on darwin which uses an older version of bash.
tests/wasi-fyi/test.sh
cd tests/wasi-fyi ./test.sh
Should run the test after building.
The script throws an unbound variable error for SKIP_LIST[@].
SKIP_LIST[@]
https://stackoverflow.com/questions/48394251/why-are-empty-arrays-treated-as-unset-in-bash
The text was updated successfully, but these errors were encountered:
Fix wasi-fyi test.sh on darwin
b1bccfc
The test script for wasi-fyi tests is broken on darwin which uses an older version of bash. This fix uses a [workaround][1]. fixes wasmerio#4775 [1]: https://stackoverflow.com/questions/48394251/why-are-empty-arrays-treated-as-unset-in-bash
Successfully merging a pull request may close this issue.
Describe the bug
After a recent change,
tests/wasi-fyi/test.sh
is broken on darwin which uses an older version of bash.Steps to reproduce
cd tests/wasi-fyi ./test.sh
Expected behavior
Should run the test after building.
Actual behavior
The script throws an unbound variable error for
SKIP_LIST[@]
.Additional context
https://stackoverflow.com/questions/48394251/why-are-empty-arrays-treated-as-unset-in-bash
The text was updated successfully, but these errors were encountered: