zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit e0d38561f09c1cf06535153ba4cd0564f5e7bcf1 (tree)
parent 5d71e3051833d20dd2dbfe801e060b3a1a3afa69
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Sat, 14 Mar 2026 05:55:24 +0100

std.crypto.argon2: disable flaky test `kdf derived key length`

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

Diffstat:
Mlib/std/crypto/argon2.zig | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/lib/std/crypto/argon2.zig b/lib/std/crypto/argon2.zig @@ -941,6 +941,8 @@ test "password hash and password verify" { } test "kdf derived key length" { + if (true) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/31504 + const allocator = std.testing.allocator; const io = std.testing.io;