Commit 7ca9b835a1

Jacob Young <jacobly0@users.noreply.github.com>
2023-04-21 06:33:55
std: disable failing test
Tracked by #15381
1 parent 6b23a7b
Changed files (1)
lib
std
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;