commit 3a759fdb17d034cef1699774a098edeff5fc47bc (tree)
parent 3375a580be51210115d43b9b76ecf8beef0d46dd
Author: LemonBoy <thatlemon@gmail.com>
Date: Sun, 13 Dec 2020 19:34:51 +0100
Disable sigaction test on i386 because of #7427
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/lib/std/os/test.zig b/lib/std/os/test.zig
@@ -653,6 +653,10 @@ test "sigaction" {
if (builtin.os.tag == .wasi or builtin.os.tag == .windows)
return error.SkipZigTest;
+ // https://github.com/ziglang/zig/issues/7427
+ if (builtin.os.tag == .linux and builtin.arch == .i386)
+ return error.SkipZigTest;
+
const S = struct {
fn handler(sig: i32, info: *const os.siginfo_t, ctx_ptr: ?*const c_void) callconv(.C) void {
// Check that we received the correct signal.