Skip to content

Commit 84b31ba

Browse files
Remove SWIFT_FORCE_TEST_NEW_DRIVER=1 workaround
`Concurrency/Runtime/custom_main_executor.swift` is failing because `-executor-factory` driver option is added only in the legacy driver but the corresponding change in the new driver is not yet merged. swiftlang/swift-driver#1861 The swiftlang/swift test suite by default uses the legacy driver, so let's just align with them.
1 parent 8eca4d9 commit 84b31ba

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

schemes/main/build/run-test.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,4 @@ SOURCE_PATH="$(cd "$(dirname "$0")/../../../.." && pwd)"
66
TARGET_BUILD_ROOT="$SOURCE_PATH/build/WebAssembly"
77

88
HOST_SUFFIX=$(find "$TARGET_BUILD_ROOT" -name "wasmstdlib-*" -exec basename {} \; | sed 's/wasmstdlib-//')
9-
# Force using the new driver for testing until https://github.com/swiftlang/swift-driver/pull/1756
10-
env SWIFT_FORCE_TEST_NEW_DRIVER=1 "PATH=$TARGET_BUILD_ROOT/llvm-$HOST_SUFFIX/bin:$PATH" "LIT_FILTER_OUT=(IRGen/|embedded/)" ninja check-swift-wasi-wasm32-custom -C "$TARGET_BUILD_ROOT/wasmstdlib-$HOST_SUFFIX"
9+
env "PATH=$TARGET_BUILD_ROOT/llvm-$HOST_SUFFIX/bin:$PATH" "LIT_FILTER_OUT=(IRGen/|embedded/)" ninja check-swift-wasi-wasm32-custom -C "$TARGET_BUILD_ROOT/wasmstdlib-$HOST_SUFFIX"

0 commit comments

Comments
 (0)