Skip to content

Commit d6028b8

Browse files
committed
Add more detailed logging for corelibs foundation
1 parent 6a13c37 commit d6028b8

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

utils/build.ps1

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -195,10 +195,7 @@ if ($AndroidSDKs.Length -gt 0) {
195195
$Android = $true
196196
}
197197

198-
if ($Test -contains "*") {
199-
# Explicitly don't include llbuild yet since tests are known to fail on Windows
200-
$Test = @("lld", "lldb", "swift", "dispatch", "foundation", "xctest", "swift-format", "sourcekit-lsp")
201-
}
198+
$Test = @("foundation")
202199

203200
## Declare static build and build tool parameters.
204201

@@ -1640,10 +1637,11 @@ function Build-SPMProject {
16401637
}
16411638
Test {
16421639
$ActionName = "test"
1640+
$Arguments += @("-v", "-j", "1")
16431641
}
16441642
TestParallel {
16451643
$ActionName = "test"
1646-
$Arguments += @("--parallel")
1644+
$Arguments += @("--parallel", "-v", "-j", "1")
16471645
}
16481646
}
16491647

@@ -2557,7 +2555,8 @@ function Test-Foundation {
25572555
-Src $SourceCache\swift-corelibs-foundation `
25582556
-Bin "$BinaryCache\$($BuildPlatform.Triple)\FoundationTests" `
25592557
-Platform $BuildPlatform `
2560-
-Configuration $FoundationTestConfiguration
2558+
-Configuration $FoundationTestConfiguration `
2559+
-v
25612560
}
25622561
}
25632562

0 commit comments

Comments
 (0)