You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -42,13 +42,19 @@ class SwiftTestingMacros(product.Product):
209
+
return True
210
+
211
+
def should_build(self, host_target):
212
+
- return True
213
+
+ build_macros = not self.is_cross_compile_target(host_target) or self.args.cross_compile_build_swift_tools
214
+
+ if not build_macros:
215
+
+ print("Skipping building Testing Macros for %s, because the host tools are not being built", host_target)
216
+
+ return build_macros
217
+
218
+
def should_test(self, host_target):
219
+
return False
220
+
221
+
def should_install(self, host_target):
222
+
- return self.args.install_swift_testing_macros
223
+
+ install_macros = self.args.install_swift_testing_macros and (not self.is_cross_compile_target(host_target) or self.args.cross_compile_build_swift_tools)
224
+
+ if self.args.install_swift_testing_macros and not install_macros:
225
+
+ print("Skipping installing Testing Macros for %s, because the host tools are not being built", host_target)
0 commit comments