File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed
Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -1415,7 +1415,7 @@ elif run_os == 'wasi':
14151415 config .swift_test_options , config .swift_frontend_test_options )
14161416 subst_target_swift_frontend_mock_sdk = config .target_swift_frontend
14171417 subst_target_swift_frontend_mock_sdk_after = ""
1418- config .target_run = 'wasmer run --backend cranelift --'
1418+ config .target_run = 'wasmer run --singlepass --'
14191419 if 'interpret' in lit_config .params :
14201420 use_interpreter_for_simple_runs ()
14211421 config .target_sil_opt = (
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ if [[ "$(uname)" == "Darwin" ]]; then
3333fi
3434
3535if [[ " $( uname) " == " Linux" ]]; then
36- $RUN_TEST_BIN --build-dir $TARGET_BUILD_DIR --target wasi-wasm32 test/stdlib/ || true
36+ $RUN_TEST_BIN --build-dir $TARGET_BUILD_DIR --target wasi-wasm32 test/stdlib/
3737 echo " Skip running test suites for Linux"
3838else
3939
Original file line number Diff line number Diff line change 33set -ex
44
55brew uninstall $( brew list | grep python@2)
6- brew install cmake ninja llvm sccache wasmer
6+ brew install cmake ninja llvm sccache
7+
8+ # Install latest wasmer
9+
10+ if [ ! -e ~ /.wasmer/bin/wasmer ]; then
11+ curl https://get.wasmer.io -sSfL | sh
12+ fi
713
814SOURCE_PATH=" $( cd " $( dirname $0 ) /../../../../" && pwd ) "
915SWIFT_PATH=$SOURCE_PATH /swift
You can’t perform that action at this time.
0 commit comments