Skip to content

Commit

Permalink
Fix wamr-test-suites script for macos (#2819)
Browse files Browse the repository at this point in the history
Update the wabt release binary name for macos and fix a syntax error:

```bash
./test_wamr.sh: line 356: syntax error near unexpected token `;'
./test_wamr.sh: line 356: `                    ;&'
```
  • Loading branch information
wenyongh authored Nov 24, 2023
1 parent 2a3c93f commit 1ba4acd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/wamr-test-suites/test_wamr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -329,12 +329,12 @@ function setup_wabt()
if [ ! -f ${WAT2WASM} ]; then
case ${PLATFORM} in
cosmopolitan)
;&
;;
linux)
WABT_PLATFORM=ubuntu
;;
darwin)
WABT_PLATFORM=macos
WABT_PLATFORM=macos-12
;;
windows)
WABT_PLATFORM=windows
Expand Down

0 comments on commit 1ba4acd

Please sign in to comment.