Commit 77c583b4c9

Andrew Kelley <andrew@ziglang.org>
2022-11-30 23:18:07
std.os.test: disable flaky timerfd test
See tracking issue #13721
1 parent fb7ca1a
Changed files (1)
lib
std
lib/std/os/test.zig
@@ -1054,6 +1054,11 @@ test "access smoke test" {
 }
 
 test "timerfd" {
+    if (true) {
+        // https://github.com/ziglang/zig/issues/13721
+        return error.SkipZigTest;
+    }
+
     if (native_os != .linux)
         return error.SkipZigTest;