@@ -142,7 +142,7 @@ final class SwiftPMBuildSystemTests: XCTestCase {
142142 )
143143
144144 let aswift = packageRoot. appending ( components: " Sources " , " lib " , " a.swift " )
145- let hostTriple = await swiftpmBuildSystem. buildParameters . triple
145+ let hostTriple = await swiftpmBuildSystem. destinationBuildParameters . triple
146146 let build = buildPath ( root: packageRoot, platform: hostTriple. platformBuildPathComponent)
147147
148148 assertEqual ( await swiftpmBuildSystem. buildPath, build)
@@ -211,7 +211,7 @@ final class SwiftPMBuildSystemTests: XCTestCase {
211211 )
212212
213213 let aswift = packageRoot. appending ( components: " Sources " , " lib " , " a.swift " )
214- let hostTriple = await swiftpmBuildSystem. buildParameters . triple
214+ let hostTriple = await swiftpmBuildSystem. destinationBuildParameters . triple
215215 let build = buildPath ( root: packageRoot, config: config, platform: hostTriple. platformBuildPathComponent)
216216
217217 assertEqual ( await swiftpmBuildSystem. buildPath, build)
@@ -435,7 +435,7 @@ final class SwiftPMBuildSystemTests: XCTestCase {
435435 let acxx = packageRoot. appending ( components: " Sources " , " lib " , " a.cpp " )
436436 let bcxx = packageRoot. appending ( components: " Sources " , " lib " , " b.cpp " )
437437 let header = packageRoot. appending ( components: " Sources " , " lib " , " include " , " a.h " )
438- let hostTriple = await swiftpmBuildSystem. buildParameters . triple
438+ let hostTriple = await swiftpmBuildSystem. destinationBuildParameters . triple
439439 let build = buildPath ( root: packageRoot, platform: hostTriple. platformBuildPathComponent)
440440
441441 assertEqual ( await swiftpmBuildSystem. buildPath, build)
@@ -515,7 +515,7 @@ final class SwiftPMBuildSystemTests: XCTestCase {
515515 let aswift = packageRoot. appending ( components: " Sources " , " lib " , " a.swift " )
516516 let arguments = try await swiftpmBuildSystem. buildSettings ( for: aswift. asURI, language: . swift) !. compilerArguments
517517 assertArgumentsContain ( " -target " , arguments: arguments) // Only one!
518- let hostTriple = await swiftpmBuildSystem. buildParameters . triple
518+ let hostTriple = await swiftpmBuildSystem. destinationBuildParameters . triple
519519
520520 #if os(macOS)
521521 assertArgumentsContain (
@@ -741,7 +741,7 @@ final class SwiftPMBuildSystemTests: XCTestCase {
741741 )
742742
743743 let aswift = packageRoot. appending ( components: " Plugins " , " MyPlugin " , " a.swift " )
744- let hostTriple = await swiftpmBuildSystem. buildParameters . triple
744+ let hostTriple = await swiftpmBuildSystem. destinationBuildParameters . triple
745745 let build = buildPath ( root: packageRoot, platform: hostTriple. platformBuildPathComponent)
746746
747747 assertEqual ( await swiftpmBuildSystem. buildPath, build)
0 commit comments