commit b0da914ae6cc21202c0b533d5aa8fda01637ff43 (tree)
parent d757d5e6b2ef263c000b8afb0abdd986dd745537
Author: Alex Rønne Petersen <alex@alexrp.com>
Date: Tue, 6 Jan 2026 10:01:16 +0100
std.crypto.argon2: disable flaky phc format hasher test
https://codeberg.org/ziglang/zig/issues/30682
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git 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;