| author | |
| committer | |
| log | 3a759fdb17d034cef1699774a098edeff5fc47bc |
| tree | 62b876f6b84852cff41f1dc7f71576a7c3e5e3bc |
| parent | 3375a580be51210115d43b9b76ecf8beef0d46dd |
1 files changed, 4 insertions(+), 0 deletions(-)
lib/std/os/test.zig+4| ... | ... | @@ -653,6 +653,10 @@ test "sigaction" { |
| 653 | 653 | if (builtin.os.tag == .wasi or builtin.os.tag == .windows) |
| 654 | 654 | return error.SkipZigTest; |
| 655 | 655 | |
| 656 | // https://github.com/ziglang/zig/issues/7427 | |
| 657 | if (builtin.os.tag == .linux and builtin.arch == .i386) | |
| 658 | return error.SkipZigTest; | |
| 659 | ||
| 656 | 660 | const S = struct { |
| 657 | 661 | fn handler(sig: i32, info: *const os.siginfo_t, ctx_ptr: ?*const c_void) callconv(.C) void { |
| 658 | 662 | // Check that we received the correct signal. |