From e0d38561f09c1cf06535153ba4cd0564f5e7bcf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Sat, 14 Mar 2026 05:55:24 +0100 Subject: [PATCH] std.crypto.argon2: disable flaky test `kdf derived key length` https://codeberg.org/ziglang/zig/issues/31504 --- lib/std/crypto/argon2.zig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/std/crypto/argon2.zig b/lib/std/crypto/argon2.zig index 69cd0b87ef8f94f3ac76621cde502596a6ebdd91..e36f6549513d5d6c737600965c69cb7a968c6f93 100644 --- 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; -- 2.54.0