From b0da914ae6cc21202c0b533d5aa8fda01637ff43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Tue, 6 Jan 2026 10:01:16 +0100 Subject: [PATCH] std.crypto.argon2: disable flaky phc format hasher test https://codeberg.org/ziglang/zig/issues/30682 --- 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 aae8400679..b5449c0487 100644 --- a/lib/std/crypto/argon2.zig +++ b/lib/std/crypto/argon2.zig @@ -905,6 +905,8 @@ test "kdf" { } test "phc format hasher" { + if (true) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/30682 + const allocator = std.testing.allocator; const password = "testpass"; const io = std.testing.io;