mirror of
https://github.com/ziglang/zig.git
synced 2026-01-21 06:45:24 +00:00
Disable sigaction test on i386 because of #7427
This commit is contained in:
parent
3375a580be
commit
3a759fdb17
@ -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.
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user