authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-07-14 18:26:18-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-07-14 18:38:50-07:00
log34d7cf075e831c2f2a078f85513401c8559748cf
tree4e947f042f132bf76f7fecec45a92e9a3da85144
parent3473e6dc261d1b03fc13c9e0cff2c2f8e14b5371

std.posix: skip flaky test

tracked by #24380

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

lib/std/posix/test.zig+5
...@@ -1001,6 +1001,11 @@ test "sigset_t bits" {...@@ -1001,6 +1001,11 @@ test "sigset_t bits" {
1001 if (native_os == .wasi or native_os == .windows)1001 if (native_os == .wasi or native_os == .windows)
1002 return error.SkipZigTest;1002 return error.SkipZigTest;
10031003
1004 if (true) {
1005 // https://github.com/ziglang/zig/issues/24380
1006 return error.SkipZigTest;
1007 }
1008
1004 const S = struct {1009 const S = struct {
1005 var expected_sig: i32 = undefined;1010 var expected_sig: i32 = undefined;
1006 var handler_called_count: u32 = 0;1011 var handler_called_count: u32 = 0;