Skip to content

Commit 66193e7

Browse files
committed
test: disable test-link macho on FreeBSD
See also d6d1fef. #25323
1 parent 62e3d46 commit 66193e7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/link/macho.zig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
pub fn testAll(b: *Build, build_opts: BuildOptions) *Step {
44
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+
69
const x86_64_target = b.resolveTargetQuery(.{
710
.cpu_arch = .x86_64,
811
.os_tag = .macos,

0 commit comments

Comments
 (0)