authorgravatar for thatlemon@gmail.comLemonBoy <thatlemon@gmail.com> 2020-12-13 19:34:51+01:00
committergravatar for thatlemon@gmail.comLemonBoy <thatlemon@gmail.com> 2020-12-13 19:35:40+01:00
log3a759fdb17d034cef1699774a098edeff5fc47bc
tree62b876f6b84852cff41f1dc7f71576a7c3e5e3bc
parent3375a580be51210115d43b9b76ecf8beef0d46dd

Disable sigaction test on i386 because of #7427


1 files changed, 4 insertions(+), 0 deletions(-)

lib/std/os/test.zig+4
......@@ -653,6 +653,10 @@ test "sigaction" {
653653 if (builtin.os.tag == .wasi or builtin.os.tag == .windows)
654654 return error.SkipZigTest;
655655
656 // https://github.com/ziglang/zig/issues/7427
657 if (builtin.os.tag == .linux and builtin.arch == .i386)
658 return error.SkipZigTest;
659
656660 const S = struct {
657661 fn handler(sig: i32, info: *const os.siginfo_t, ctx_ptr: ?*const c_void) callconv(.C) void {
658662 // Check that we received the correct signal.