From 66193e72d3deeac4f78bc8d81f42a7d9b243fa58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Sat, 11 Oct 2025 00:40:42 +0200 Subject: [PATCH] test: disable test-link macho on FreeBSD See also d6d1fef. https://github.com/ziglang/zig/issues/25323 --- test/link/macho.zig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/link/macho.zig b/test/link/macho.zig index 422fc89a56..0a21727df6 100644 --- a/test/link/macho.zig +++ b/test/link/macho.zig @@ -3,6 +3,9 @@ pub fn testAll(b: *Build, build_opts: BuildOptions) *Step { const macho_step = b.step("test-macho", "Run MachO tests"); + // https://github.com/ziglang/zig/issues/25323 + if (builtin.os.tag == .freebsd) return macho_step; + const x86_64_target = b.resolveTargetQuery(.{ .cpu_arch = .x86_64, .os_tag = .macos,