authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-10-11 00:40:42+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-10-11 00:40:42+02:00
log66193e72d3deeac4f78bc8d81f42a7d9b243fa58
tree0e7437e01e5305625415bb5fc0c71290445c180e
parent62e3d46287a98e98cbddfb3eb6e966ffc324b280
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

test: disable test-link macho on FreeBSD

See also d6d1fef. https://github.com/ziglang/zig/issues/25323

1 files changed, 3 insertions(+), 0 deletions(-)

test/link/macho.zig+3
...@@ -3,6 +3,9 @@...@@ -3,6 +3,9 @@
3pub fn testAll(b: *Build, build_opts: BuildOptions) *Step {3pub fn testAll(b: *Build, build_opts: BuildOptions) *Step {
4 const macho_step = b.step("test-macho", "Run MachO tests");4 const macho_step = b.step("test-macho", "Run MachO tests");
55
6 // https://github.com/ziglang/zig/issues/25323
7 if (builtin.os.tag == .freebsd) return macho_step;
8
6 const x86_64_target = b.resolveTargetQuery(.{9 const x86_64_target = b.resolveTargetQuery(.{
7 .cpu_arch = .x86_64,10 .cpu_arch = .x86_64,
8 .os_tag = .macos,11 .os_tag = .macos,