| ... | @@ -653,6 +653,10 @@ test "sigaction" { | ... | @@ -653,6 +653,10 @@ test "sigaction" { |
| 653 | if (builtin.os.tag == .wasi or builtin.os.tag == .windows) | 653 | if (builtin.os.tag == .wasi or builtin.os.tag == .windows) |
| 654 | return error.SkipZigTest; | 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 | const S = struct { | 660 | const S = struct { |
| 657 | fn handler(sig: i32, info: *const os.siginfo_t, ctx_ptr: ?*const c_void) callconv(.C) void { | 661 | fn handler(sig: i32, info: *const os.siginfo_t, ctx_ptr: ?*const c_void) callconv(.C) void { |
| 658 | // Check that we received the correct signal. | 662 | // Check that we received the correct signal. |