authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-11-23 07:09:15+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-11-23 07:10:35+01:00
logd6931b0ff5097edbcb855d78056ac9ecd8d075da
tree0e9d33195b24e59f866fd55d4b87b45f6c7cdb80
parent0e3b5e6d8fa22eabf8a79a3f0f143a5ba295c2b3
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

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.

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

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