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);...@@ -1308,6 +1308,11 @@ pub const KT128 = KTHash(KT128Variant, turboShake128MultiSliceToBuffer);
1308pub const KT256 = KTHash(KT256Variant, turboShake256MultiSliceToBuffer);1308pub const KT256 = KTHash(KT256Variant, turboShake256MultiSliceToBuffer);
13091309
1310test "KT128 sequential and parallel produce same output for small inputs" {1310test "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
1311 const allocator = std.testing.allocator;1316 const allocator = std.testing.allocator;
1312 const io = std.testing.io;1317 const io = std.testing.io;
13131318
...@@ -1412,6 +1417,11 @@ test "KT128 sequential and parallel produce same output for many random lengths"...@@ -1412,6 +1417,11 @@ test "KT128 sequential and parallel produce same output for many random lengths"
1412}1417}
14131418
1414test "KT128 sequential and parallel produce same output with customization" {1419test "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
1415 const allocator = std.testing.allocator;1425 const allocator = std.testing.allocator;
1416 const io = std.testing.io;1426 const io = std.testing.io;
14171427
...@@ -1440,6 +1450,11 @@ test "KT128 sequential and parallel produce same output with customization" {...@@ -1440,6 +1450,11 @@ test "KT128 sequential and parallel produce same output with customization" {
1440}1450}
14411451
1442test "KT256 sequential and parallel produce same output for small inputs" {1452test "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
1443 const allocator = std.testing.allocator;1458 const allocator = std.testing.allocator;
1444 const io = std.testing.io;1459 const io = std.testing.io;
14451460
...@@ -1471,6 +1486,11 @@ test "KT256 sequential and parallel produce same output for small inputs" {...@@ -1471,6 +1486,11 @@ test "KT256 sequential and parallel produce same output for small inputs" {
1471}1486}
14721487
1473test "KT256 sequential and parallel produce same output for large inputs" {1488test "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
1474 const allocator = std.testing.allocator;1494 const allocator = std.testing.allocator;
1475 const io = std.testing.io;1495 const io = std.testing.io;
14761496
...@@ -1506,6 +1526,11 @@ test "KT256 sequential and parallel produce same output for large inputs" {...@@ -1506,6 +1526,11 @@ test "KT256 sequential and parallel produce same output for large inputs" {
1506}1526}
15071527
1508test "KT256 sequential and parallel produce same output with customization" {1528test "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
1509 const allocator = std.testing.allocator;1534 const allocator = std.testing.allocator;
1510 const io = std.testing.io;1535 const io = std.testing.io;
15111536