commit a0a982f0ea617fa6c74695976b5cfdfd6f9f8b33 (tree) parent 8226d706e2cb69845c400ce22d8b263c4a390f11 Author: Andrew Kelley <andrew@ziglang.org> Date: Sat, 3 Jan 2026 16:27:09 -0800 std.crypto.kangarootwelve: disable flaky test tracked by #30676 Diffstat:
| M | lib/std/crypto/kangarootwelve.zig | | | 10 | ++++++++++ |
1 file changed, 10 insertions(+), 0 deletions(-)
diff --git a/lib/std/crypto/kangarootwelve.zig b/lib/std/crypto/kangarootwelve.zig @@ -1339,6 +1339,11 @@ test "KT128 sequential and parallel produce same output for small inputs" { } test "KT128 sequential and parallel produce same output for large inputs" { + if (true) { + // https://codeberg.org/ziglang/zig/issues/30676 + return error.SkipZigTest; + } + const allocator = std.testing.allocator; const io = std.testing.io; @@ -1374,6 +1379,11 @@ test "KT128 sequential and parallel produce same output for large inputs" { } test "KT128 sequential and parallel produce same output for many random lengths" { + if (true) { + // https://codeberg.org/ziglang/zig/issues/30676 + return error.SkipZigTest; + } + const allocator = std.testing.allocator; const io = std.testing.io;