From 7ca9b835a1fe285bf9942c978bf1c2c52e057dc7 Mon Sep 17 00:00:00 2001 From: Jacob Young Date: Fri, 21 Apr 2023 00:33:55 -0400 Subject: [PATCH] std: disable failing test Tracked by #15381 --- lib/std/os/test.zig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/std/os/test.zig b/lib/std/os/test.zig index a68cf6ddfe..5174090712 100644 --- a/lib/std/os/test.zig +++ b/lib/std/os/test.zig @@ -796,6 +796,11 @@ test "sigaction" { if (native_os == .linux and builtin.target.cpu.arch == .x86) return error.SkipZigTest; + // https://github.com/ziglang/zig/issues/15381 + if (native_os == .macos and builtin.target.cpu.arch == .x86_64) { + return error.SkipZigTest; + } + const S = struct { var handler_called_count: u32 = 0;