| author | |
| committer | |
| log | d6931b0ff5097edbcb855d78056ac9ecd8d075da |
| tree | 0e9d33195b24e59f866fd55d4b87b45f6c7cdb80 |
| parent | 0e3b5e6d8fa22eabf8a79a3f0f143a5ba295c2b3 |
| signature |
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 | 4 | pub fn build(b: *std.Build) void { |
| 5 | 5 | const host = b.graph.host; |
| 6 | 6 | |
| 7 | // https://github.com/ziglang/zig/issues/25471 | |
| 8 | if (host.result.os.tag == .freebsd) return; | |
| 9 | ||
| 7 | 10 | switch (host.result.cpu.arch) { |
| 8 | 11 | .aarch64, |
| 9 | 12 | .x86, |