Skip to content

Commit d6931b0

Browse files
committed
test: disable coff_dwarf on FreeBSD
#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 parent 0e3b5e6 commit d6931b0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/standalone/coff_dwarf/build.zig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ const std = @import("std");
44
pub fn build(b: *std.Build) void {
55
const host = b.graph.host;
66

7+
// https://github.com/ziglang/zig/issues/25471
8+
if (host.result.os.tag == .freebsd) return;
9+
710
switch (host.result.cpu.arch) {
811
.aarch64,
912
.x86,

0 commit comments

Comments
 (0)