mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 02:24:33 +01:00
std.Io.test: disable flaky recancel test on linux w/o libc
https://codeberg.org/ziglang/zig/issues/30592
This commit is contained in:
parent
bbacf42837
commit
ccc78252f1
1 changed files with 2 additions and 0 deletions
|
|
@ -421,6 +421,8 @@ test "Event" {
|
|||
}
|
||||
|
||||
test "recancel" {
|
||||
if (builtin.os.tag == .linux and !builtin.link_libc) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/30592
|
||||
|
||||
const global = struct {
|
||||
fn worker(io: Io) Io.Cancelable!void {
|
||||
var dummy_event: Io.Event = .unset;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue