File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed
utils/swift_build_support/swift_build_support Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -662,14 +662,14 @@ def compute_product_pipelines(self):
662662 # Begin the post build-script-impl build phase.
663663 builder .begin_pipeline ()
664664
665- builder .add_product (products .SwiftPM ,
666- is_enabled = self .args .build_swiftpm )
667- builder .add_product (products .SwiftSyntax ,
668- is_enabled = self .args .build_swiftsyntax )
669665 builder .add_product (products .SwiftTestingMacros ,
670666 is_enabled = self .args .build_swift_testing_macros )
671667 builder .add_product (products .SwiftTesting ,
672668 is_enabled = self .args .build_swift_testing )
669+ builder .add_product (products .SwiftPM ,
670+ is_enabled = self .args .build_swiftpm )
671+ builder .add_product (products .SwiftSyntax ,
672+ is_enabled = self .args .build_swiftsyntax )
673673 builder .add_product (products .SwiftFormat ,
674674 is_enabled = self .args .build_swiftformat )
675675 builder .add_product (products .SKStressTester ,
Original file line number Diff line number Diff line change 1717from . import cmake_product
1818from . import product
1919from . import swift
20+ from . import swift_testing_macros
2021
2122
2223class SwiftTesting (product .Product ):
@@ -34,7 +35,8 @@ def product_source_name(cls):
3435
3536 @classmethod
3637 def get_dependencies (cls ):
37- return [swift .Swift ]
38+ return [swift .Swift ,
39+ swift_testing_macros .SwiftTestingMacros ]
3840
3941 def should_build (self , host_target ):
4042 return True
Original file line number Diff line number Diff line change 2121from . import llvm
2222from . import product
2323from . import swift
24+ from . import swift_testing
2425from . import xctest
2526from .. import shell
2627from ..targets import StdlibDeploymentTarget
@@ -143,4 +144,5 @@ def get_dependencies(cls):
143144 libdispatch .LibDispatch ,
144145 foundation .Foundation ,
145146 xctest .XCTest ,
146- llbuild .LLBuild ]
147+ llbuild .LLBuild ,
148+ swift_testing .SwiftTesting ]
You can’t perform that action at this time.
0 commit comments