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 @@ -1437,7 +1437,7 @@ elif run_os == 'wasi':
1437
1437
config .swift_test_options , config .swift_frontend_test_options ])
1438
1438
subst_target_swift_frontend_mock_sdk = config .target_swift_frontend
1439
1439
subst_target_swift_frontend_mock_sdk_after = ""
1440
- config .target_run = '%s run --backend cranelift --' % config .wasmer
1440
+ config .target_run = '%s run --singlepass --' % config .wasmer
1441
1441
if 'interpret' in lit_config .params :
1442
1442
use_interpreter_for_simple_runs ()
1443
1443
config .target_sil_opt = (
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ if [[ "$(uname)" == "Darwin" ]]; then
40
40
fi
41
41
42
42
if [[ " $( uname) " == " Linux" ]]; then
43
- $RUN_TEST_BIN --build-dir $TARGET_BUILD_DIR --target wasi-wasm32 test/stdlib/ || true
43
+ $RUN_TEST_BIN --build-dir $TARGET_BUILD_DIR --target wasi-wasm32 test/stdlib/
44
44
echo " Skip running test suites for Linux"
45
45
else
46
46
Original file line number Diff line number Diff line change 3
3
set -ex
4
4
5
5
brew 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
7
13
8
14
SOURCE_PATH=" $( cd " $( dirname $0 ) /../../../../" && pwd ) "
9
15
SWIFT_PATH=$SOURCE_PATH /swift
You can’t perform that action at this time.
0 commit comments