File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -6,4 +6,5 @@ SOURCE_PATH="$(cd "$(dirname "$0")/../../../.." && pwd)"
66TARGET_BUILD_ROOT=" $SOURCE_PATH /build/WebAssembly"
77
88HOST_SUFFIX=$( find " $TARGET_BUILD_ROOT " -name " wasmstdlib-*" -exec basename {} \; | sed ' s/wasmstdlib-//' )
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 "
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 "
Original file line number Diff line number Diff line change 11{
2- "base-tag" : " swift-DEVELOPMENT-SNAPSHOT-2024-12-04 -a" ,
2+ "base-tag" : " swift-DEVELOPMENT-SNAPSHOT-2024-12-10 -a" ,
33 "build-compiler" : false ,
44 "icu4c" : [],
55 "libxml2" : [
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ print("chdir: \(chdirResult)")
1414// CHECK: cwd: /tmp
1515print ( " cwd: \( FileManager . default. currentDirectoryPath) " )
1616
17- // CHECK: homeDirectory: file:///var/empty/
17+ // CHECK: homeDirectory: nil
1818print ( " homeDirectory: \( FileManager . default. homeDirectory ( forUser: " nobody " ) ? . absoluteString ?? " nil " ) " )
1919
2020// CHECK: temporaryDirectory: file:///tmp/
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ print("chdir: \(chdirResult)")
1414// CHECK: cwd: /tmp
1515print ( " cwd: \( FileManager . default. currentDirectoryPath) " )
1616
17- // CHECK: homeDirectory: file:///var/empty/
17+ // CHECK: homeDirectory: nil
1818print ( " homeDirectory: \( FileManager . default. homeDirectory ( forUser: " nobody " ) ? . absoluteString ?? " nil " ) " )
1919
2020// CHECK: temporaryDirectory: file:///tmp/
You can’t perform that action at this time.
0 commit comments