File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -1803,10 +1803,11 @@ function Build-SPMProject {
1803
1803
}
1804
1804
Test {
1805
1805
$ActionName = " test"
1806
+ $Arguments += @ (" -v" )
1806
1807
}
1807
1808
TestParallel {
1808
1809
$ActionName = " test"
1809
- $Arguments += @ (" --parallel" )
1810
+ $Arguments += @ (" --parallel" , " -v " )
1810
1811
}
1811
1812
}
1812
1813
@@ -2849,7 +2850,8 @@ function Test-Foundation {
2849
2850
- Action Test `
2850
2851
- Src $SourceCache \swift- foundation `
2851
2852
- Bin " $BinaryCache \$ ( $BuildPlatform.Triple ) \CoreFoundationTests" `
2852
- - Platform $BuildPlatform
2853
+ - Platform $BuildPlatform `
2854
+ - Configuration $FoundationTestConfiguration
2853
2855
2854
2856
Invoke-IsolatingEnvVars {
2855
2857
$env: DISPATCH_INCLUDE_PATH = " $ ( Get-SwiftSDK $BuildPlatform.OS ) /usr/include"
@@ -2863,8 +2865,7 @@ function Test-Foundation {
2863
2865
- Src $SourceCache \swift- corelibs- foundation `
2864
2866
- Bin " $BinaryCache \$ ( $BuildPlatform.Triple ) \FoundationTests" `
2865
2867
- Platform $BuildPlatform `
2866
- - Configuration $FoundationTestConfiguration `
2867
- - j 1 # Running parallel causes a non-deterministic crash in CI only, see https://github.com/swiftlang/swift/issues/83606
2868
+ - Configuration $FoundationTestConfiguration
2868
2869
}
2869
2870
}
2870
2871
You can’t perform that action at this time.
0 commit comments