Skip to content

Commit dd6f1c2

Browse files
committed
Fix missing param.
1 parent b150d4c commit dd6f1c2

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

utils/build.ps1

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3300,14 +3300,14 @@ if (-not $IsCrossCompiling) {
33003300
Invoke-BuildStep Build-Compilers $HostPlatform $Tests
33013301
}
33023302

3303-
if ($Test -contains "dispatch") { Invoke-BuildStep Test-Dispatch }
3304-
if ($Test -contains "foundation") { Invoke-BuildStep Test-Foundation }
3305-
if ($Test -contains "xctest") { Invoke-BuildStep Test-XCTest }
3306-
if ($Test -contains "testing") { Invoke-BuildStep Test-Testing }
3307-
if ($Test -contains "llbuild") { Invoke-BuildStep Test-LLBuild }
3308-
if ($Test -contains "swiftpm") { Invoke-BuildStep Test-PackageManager }
3309-
if ($Test -contains "swift-format") { Invoke-BuildStep Test-Format }
3310-
if ($Test -contains "sourcekit-lsp") { Invoke-BuildStep Test-SourceKitLSP }
3303+
if ($Test -contains "dispatch") { Invoke-BuildStep Test-Dispatch $BuildPlatform }
3304+
if ($Test -contains "foundation") { Invoke-BuildStep Test-Foundation $BuildPlatform }
3305+
if ($Test -contains "xctest") { Invoke-BuildStep Test-XCTest $BuildPlatform }
3306+
if ($Test -contains "testing") { Invoke-BuildStep Test-Testing $BuildPlatform }
3307+
if ($Test -contains "llbuild") { Invoke-BuildStep Test-LLBuild $BuildPlatform }
3308+
if ($Test -contains "swiftpm") { Invoke-BuildStep Test-PackageManager $BuildPlatform }
3309+
if ($Test -contains "swift-format") { Invoke-BuildStep Test-Format $BuildPlatform }
3310+
if ($Test -contains "sourcekit-lsp") { Invoke-BuildStep Test-SourceKitLSP $BuildPlatform}
33113311

33123312
if ($Test -contains "swift") {
33133313
foreach ($Platform in $AndroidSDKPlatforms) {

0 commit comments

Comments
 (0)