| ... | @@ -1308,6 +1308,11 @@ pub const KT128 = KTHash(KT128Variant, turboShake128MultiSliceToBuffer); | ... | @@ -1308,6 +1308,11 @@ pub const KT128 = KTHash(KT128Variant, turboShake128MultiSliceToBuffer); |
| 1308 | pub const KT256 = KTHash(KT256Variant, turboShake256MultiSliceToBuffer); | 1308 | pub const KT256 = KTHash(KT256Variant, turboShake256MultiSliceToBuffer); |
| 1309 | | 1309 | |
| 1310 | test "KT128 sequential and parallel produce same output for small inputs" { | 1310 | test "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; |
| 1313 | | 1318 | |
| ... | @@ -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 | } |
| 1413 | | 1418 | |
| 1414 | test "KT128 sequential and parallel produce same output with customization" { | 1419 | test "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; |
| 1417 | | 1427 | |
| ... | @@ -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 | } |
| 1441 | | 1451 | |
| 1442 | test "KT256 sequential and parallel produce same output for small inputs" { | 1452 | test "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; |
| 1445 | | 1460 | |
| ... | @@ -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 | } |
| 1472 | | 1487 | |
| 1473 | test "KT256 sequential and parallel produce same output for large inputs" { | 1488 | test "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; |
| 1476 | | 1496 | |
| ... | @@ -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 | } |
| 1507 | | 1527 | |
| 1508 | test "KT256 sequential and parallel produce same output with customization" { | 1528 | test "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; |
| 1511 | | 1536 | |