authorgravatar for squeek502@hotmail.comRyan Liptak <squeek502@hotmail.com> 2026-07-01 18:09:40-07:00
committergravatar for squeek502@hotmail.comRyan Liptak <squeek502@hotmail.com> 2026-07-01 18:09:40-07:00
logaf9676049a08827bfca33a05f9c2c763ca502fb2
tree54da2053cc604bf7451eb287623cf570ac32d567
parentd9aad76acddeedb1ba9ae0566a35eb23e9998aa5

Disable flaky `config_header` standalone test on freebsd

Tracked at https://codeberg.org/ziglang/zig/issues/36013

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

test/standalone/config_header/build.zig+4
......@@ -1,9 +1,13 @@
11const std = @import("std");
2const builtin = @import("builtin");
23
34pub fn build(b: *std.Build) void {
45 const test_step = b.step("test", "Test it");
56 b.default_step = test_step;
67
8 // https://codeberg.org/ziglang/zig/issues/36013
9 if (builtin.os.tag == .freebsd) return;
10
711 const config_header = b.addConfigHeader(
812 .{ .style = .{ .autoconf_undef = b.path("autoconf_undef/config.h.in") } },
913 .{