| author | |
| committer | |
| log | 7ca9b835a1fe285bf9942c978bf1c2c52e057dc7 |
| tree | 673300bda24fd0400ef8d27cd79bf88872f19223 |
| parent | 6b23a7b61a22b7c79a44b758ff2cfdc30bcc8d8a |
Tracked by #153811 files changed, 5 insertions(+), 0 deletions(-)
lib/std/os/test.zig+5| ... | ... | @@ -796,6 +796,11 @@ test "sigaction" { |
| 796 | 796 | if (native_os == .linux and builtin.target.cpu.arch == .x86) |
| 797 | 797 | return error.SkipZigTest; |
| 798 | 798 | |
| 799 | // https://github.com/ziglang/zig/issues/15381 | |
| 800 | if (native_os == .macos and builtin.target.cpu.arch == .x86_64) { | |
| 801 | return error.SkipZigTest; | |
| 802 | } | |
| 803 | ||
| 799 | 804 | const S = struct { |
| 800 | 805 | var handler_called_count: u32 = 0; |
| 801 | 806 |