| ... | ... | @@ -1308,6 +1308,11 @@ pub const KT128 = KTHash(KT128Variant, turboShake128MultiSliceToBuffer); |
| 1308 | 1308 | pub const KT256 = KTHash(KT256Variant, turboShake256MultiSliceToBuffer); |
| 1309 | 1309 | |
| 1310 | 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 | 1316 | const allocator = std.testing.allocator; |
| 1312 | 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 | 1417 | } |
| 1413 | 1418 | |
| 1414 | 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 | 1425 | const allocator = std.testing.allocator; |
| 1416 | 1426 | const io = std.testing.io; |
| 1417 | 1427 | |
| ... | ... | @@ -1440,6 +1450,11 @@ test "KT128 sequential and parallel produce same output with customization" { |
| 1440 | 1450 | } |
| 1441 | 1451 | |
| 1442 | 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 | 1458 | const allocator = std.testing.allocator; |
| 1444 | 1459 | const io = std.testing.io; |
| 1445 | 1460 | |
| ... | ... | @@ -1471,6 +1486,11 @@ test "KT256 sequential and parallel produce same output for small inputs" { |
| 1471 | 1486 | } |
| 1472 | 1487 | |
| 1473 | 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 | 1494 | const allocator = std.testing.allocator; |
| 1475 | 1495 | const io = std.testing.io; |
| 1476 | 1496 | |
| ... | ... | @@ -1506,6 +1526,11 @@ test "KT256 sequential and parallel produce same output for large inputs" { |
| 1506 | 1526 | } |
| 1507 | 1527 | |
| 1508 | 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 | 1534 | const allocator = std.testing.allocator; |
| 1510 | 1535 | const io = std.testing.io; |
| 1511 | 1536 | |