zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit d6931b0ff5097edbcb855d78056ac9ecd8d075da (tree)
parent 0e3b5e6d8fa22eabf8a79a3f0f143a5ba295c2b3
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Sun, 23 Nov 2025 07:09:15 +0100

test: disable `coff_dwarf` on FreeBSD

https://github.com/ziglang/zig/issues/25471

This is not the only test that aborts like this, nor does it happen only on
FreeBSD, but it happens to be disproportionally disruptive on FreeBSD in
particular.

Diffstat:
Mtest/standalone/coff_dwarf/build.zig | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/test/standalone/coff_dwarf/build.zig b/test/standalone/coff_dwarf/build.zig @@ -4,6 +4,9 @@ const std = @import("std"); pub fn build(b: *std.Build) void { const host = b.graph.host; + // https://github.com/ziglang/zig/issues/25471 + if (host.result.os.tag == .freebsd) return; + switch (host.result.cpu.arch) { .aarch64, .x86,