authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-01-03 16:27:09-08:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-01-03 16:27:09-08:00
loga0a982f0ea617fa6c74695976b5cfdfd6f9f8b33
tree7d169cc26d48ef0a75fe38945db6f6ee31118934
parent8226d706e2cb69845c400ce22d8b263c4a390f11

std.crypto.kangarootwelve: disable flaky test

tracked by #30676

1 files changed, 10 insertions(+), 0 deletions(-)

lib/std/crypto/kangarootwelve.zig+10
...@@ -1339,6 +1339,11 @@ test "KT128 sequential and parallel produce same output for small inputs" {...@@ -1339,6 +1339,11 @@ test "KT128 sequential and parallel produce same output for small inputs" {
1339}1339}
13401340
1341test "KT128 sequential and parallel produce same output for large inputs" {1341test "KT128 sequential and parallel produce same output for large inputs" {
1342 if (true) {
1343 // https://codeberg.org/ziglang/zig/issues/30676
1344 return error.SkipZigTest;
1345 }
1346
1342 const allocator = std.testing.allocator;1347 const allocator = std.testing.allocator;
1343 const io = std.testing.io;1348 const io = std.testing.io;
13441349
...@@ -1374,6 +1379,11 @@ test "KT128 sequential and parallel produce same output for large inputs" {...@@ -1374,6 +1379,11 @@ test "KT128 sequential and parallel produce same output for large inputs" {
1374}1379}
13751380
1376test "KT128 sequential and parallel produce same output for many random lengths" {1381test "KT128 sequential and parallel produce same output for many random lengths" {
1382 if (true) {
1383 // https://codeberg.org/ziglang/zig/issues/30676
1384 return error.SkipZigTest;
1385 }
1386
1377 const allocator = std.testing.allocator;1387 const allocator = std.testing.allocator;
1378 const io = std.testing.io;1388 const io = std.testing.io;
13791389