authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-01-13 09:17:51+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-01-13 09:19:08+01:00
log9dd27162296e71eeff61bbf74a25a05ff838423d
tree1d5de5337b54d755e27a8b58a4b63fbcd924608c
parent85cac9e5b6c3039537e87247f8640f7182df8540
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

std.crypto.kangarootwelve: disable more flaky tests

https://codeberg.org/ziglang/zig/issues/30676

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

lib/std/crypto/kangarootwelve.zig+25
......@@ -1308,6 +1308,11 @@ pub const KT128 = KTHash(KT128Variant, turboShake128MultiSliceToBuffer);
13081308pub const KT256 = KTHash(KT256Variant, turboShake256MultiSliceToBuffer);
13091309
13101310test "KT128 sequential and parallel produce same output for small inputs" {
1311 if (true) {
1312 // https://codeberg.org/ziglang/zig/issues/30676
1313 return error.SkipZigTest;
1314 }
1315
13111316 const allocator = std.testing.allocator;
13121317 const io = std.testing.io;
13131318
......@@ -1412,6 +1417,11 @@ test "KT128 sequential and parallel produce same output for many random lengths"
14121417}
14131418
14141419test "KT128 sequential and parallel produce same output with customization" {
1420 if (true) {
1421 // https://codeberg.org/ziglang/zig/issues/30676
1422 return error.SkipZigTest;
1423 }
1424
14151425 const allocator = std.testing.allocator;
14161426 const io = std.testing.io;
14171427
......@@ -1440,6 +1450,11 @@ test "KT128 sequential and parallel produce same output with customization" {
14401450}
14411451
14421452test "KT256 sequential and parallel produce same output for small inputs" {
1453 if (true) {
1454 // https://codeberg.org/ziglang/zig/issues/30676
1455 return error.SkipZigTest;
1456 }
1457
14431458 const allocator = std.testing.allocator;
14441459 const io = std.testing.io;
14451460
......@@ -1471,6 +1486,11 @@ test "KT256 sequential and parallel produce same output for small inputs" {
14711486}
14721487
14731488test "KT256 sequential and parallel produce same output for large inputs" {
1489 if (true) {
1490 // https://codeberg.org/ziglang/zig/issues/30676
1491 return error.SkipZigTest;
1492 }
1493
14741494 const allocator = std.testing.allocator;
14751495 const io = std.testing.io;
14761496
......@@ -1506,6 +1526,11 @@ test "KT256 sequential and parallel produce same output for large inputs" {
15061526}
15071527
15081528test "KT256 sequential and parallel produce same output with customization" {
1529 if (true) {
1530 // https://codeberg.org/ziglang/zig/issues/30676
1531 return error.SkipZigTest;
1532 }
1533
15091534 const allocator = std.testing.allocator;
15101535 const io = std.testing.io;
15111536