Skip to content

Commit f7a11c7

Browse files
authored
Tests all cases of infer-cross-compile-hosts-on-darwin at once (#60824)
The current implementation currently requires to have physical machine for each architecture supported by macOS, which is not desirable. To allow all cases to be tested on a random Mac machine, allow to inject an arbitratry current architecture into the inference of the cross compile hosts by means of an environment variable. Addresses rdar://99096874
1 parent 7d71d64 commit f7a11c7

File tree

2 files changed

+23
-5
lines changed

2 files changed

+23
-5
lines changed

utils/build-script

+21-3
Original file line numberDiff line numberDiff line change
@@ -413,19 +413,37 @@ def apply_default_arguments(toolchain, args):
413413

414414
if (args.infer_cross_compile_hosts_on_darwin and
415415
platform.system() == "Darwin"):
416-
args.cross_compile_hosts = _infer_cross_compile_hosts_on_darwin()
416+
args.cross_compile_hosts = _infer_cross_compile_hosts_on_darwin(
417+
get_running_arch(args.dry_run))
417418
print("Inferred the following hosts for cross compilations: "
418419
f"{args.cross_compile_hosts}")
419420
sys.stdout.flush()
420421

421422

422-
def _infer_cross_compile_hosts_on_darwin():
423-
if platform.machine() == "x86_64":
423+
def _infer_cross_compile_hosts_on_darwin(arch_we_are_running_on):
424+
if arch_we_are_running_on == "x86_64":
424425
return ["macosx-arm64"]
425426
else:
426427
return ["macosx-x86_64"]
427428

428429

430+
def get_running_arch(dry_run):
431+
# We can override the detected arch to support
432+
# BuildSystem/infer-cross-compile-hosts-on-darwin-macosx.test
433+
# Given the narrow scenario, we preferred using
434+
# an environment variable instead of a build-script
435+
# argument to make this less discoverable on purpose
436+
if dry_run:
437+
injected_arch = os.environ.get(
438+
'ARCH_FOR_BUILDSYSTEM_TESTS',
439+
platform.machine())
440+
print("DRY RUN: assume build-script is being run on a "
441+
f"{injected_arch} machine")
442+
return injected_arch
443+
else:
444+
return platform.machine()
445+
446+
429447
# -----------------------------------------------------------------------------
430448
# Main (preset)
431449

validation-test/BuildSystem/infer-cross-compile-hosts-on-darwin-macosx.test

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# REQUIRES: OS=macosx
33

44
# RUN: %empty-directory(%t)
5-
# RUN: SKIP_XCODE_VERSION_CHECK=1 SWIFT_BUILD_ROOT=%t %swift_src_root/utils/build-script --dry-run --infer-cross-compile-hosts-on-darwin --cmake %cmake 2>&1 | %FileCheck --check-prefix=INFER-CROSS-COMPILE-HOSTS-ON-DARWIN-%target-cpu %s
5+
# RUN: SKIP_XCODE_VERSION_CHECK=1 SWIFT_BUILD_ROOT=%t ARCH_FOR_BUILDSYSTEM_TESTS=x86_64 %swift_src_root/utils/build-script --dry-run --infer-cross-compile-hosts-on-darwin --cmake %cmake 2>&1 | %FileCheck --check-prefix=INFER-CROSS-COMPILE-HOSTS-ON-DARWIN-x86_64 %s
66
# RUN: %empty-directory(%t)
7-
# RUN: SKIP_XCODE_VERSION_CHECK=1 SWIFT_BUILD_ROOT=%t %swift_src_root/utils/build-script --dry-run --infer-cross-compile-hosts-on-darwin=1 --cmake %cmake 2>&1 | %FileCheck --check-prefix=INFER-CROSS-COMPILE-HOSTS-ON-DARWIN-%target-cpu %s
7+
# RUN: SKIP_XCODE_VERSION_CHECK=1 SWIFT_BUILD_ROOT=%t ARCH_FOR_BUILDSYSTEM_TESTS=arm64 %swift_src_root/utils/build-script --dry-run --infer-cross-compile-hosts-on-darwin=1 --cmake %cmake 2>&1 | %FileCheck --check-prefix=INFER-CROSS-COMPILE-HOSTS-ON-DARWIN-arm64 %s
88

99
# INFER-CROSS-COMPILE-HOSTS-ON-DARWIN-x86_64: Inferred the following hosts for cross compilations: ['macosx-arm64']
1010
# INFER-CROSS-COMPILE-HOSTS-ON-DARWIN-arm64: Inferred the following hosts for cross compilations: ['macosx-x86_64']

0 commit comments

Comments
 (0)