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)"
6
6
TARGET_BUILD_ROOT=" $SOURCE_PATH /build/WebAssembly"
7
7
8
8
HOST_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 1
1
{
2
- "base-tag" : " swift-DEVELOPMENT-SNAPSHOT-2024-12-04 -a" ,
2
+ "base-tag" : " swift-DEVELOPMENT-SNAPSHOT-2024-12-10 -a" ,
3
3
"build-compiler" : false ,
4
4
"icu4c" : [],
5
5
"libxml2" : [
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ print("chdir: \(chdirResult)")
14
14
// CHECK: cwd: /tmp
15
15
print ( " cwd: \( FileManager . default. currentDirectoryPath) " )
16
16
17
- // CHECK: homeDirectory: file:///var/empty/
17
+ // CHECK: homeDirectory: nil
18
18
print ( " homeDirectory: \( FileManager . default. homeDirectory ( forUser: " nobody " ) ? . absoluteString ?? " nil " ) " )
19
19
20
20
// CHECK: temporaryDirectory: file:///tmp/
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ print("chdir: \(chdirResult)")
14
14
// CHECK: cwd: /tmp
15
15
print ( " cwd: \( FileManager . default. currentDirectoryPath) " )
16
16
17
- // CHECK: homeDirectory: file:///var/empty/
17
+ // CHECK: homeDirectory: nil
18
18
print ( " homeDirectory: \( FileManager . default. homeDirectory ( forUser: " nobody " ) ? . absoluteString ?? " nil " ) " )
19
19
20
20
// CHECK: temporaryDirectory: file:///tmp/
You can’t perform that action at this time.
0 commit comments