diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2023-10-24 05:34:13 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-24 05:34:13 -0400 |
| commit | bb0419599aa93455f3ae0969f4bfd80204807596 (patch) | |
| tree | edce35a16131dbe5ce31a62cbbf7ac8f2dfca0bc /lib/std/crypto/phc_encoding.zig | |
| parent | b477279c37d1ca1c141a3e30589bd974687b85cc (diff) | |
| parent | f7482a5c95dd549eb3da103eab42bac881ba0498 (diff) | |
| download | zig-bb0419599aa93455f3ae0969f4bfd80204807596.tar.gz zig-bb0419599aa93455f3ae0969f4bfd80204807596.zip | |
Merge pull request #17666 from jacobly0/x86_64-unicode
x86_64: pass more std tests
Diffstat (limited to 'lib/std/crypto/phc_encoding.zig')
| -rw-r--r-- | lib/std/crypto/phc_encoding.zig | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/std/crypto/phc_encoding.zig b/lib/std/crypto/phc_encoding.zig index 58757cec28..396e30edf5 100644 --- a/lib/std/crypto/phc_encoding.zig +++ b/lib/std/crypto/phc_encoding.zig @@ -351,16 +351,12 @@ test "phc format - encoding/decoding" { } test "phc format - empty input string" { - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; - const s = ""; const v = deserialize(struct { alg_id: []const u8 }, s); try std.testing.expectError(Error.InvalidEncoding, v); } test "phc format - hash without salt" { - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; - const s = "$scrypt"; const v = deserialize(struct { alg_id: []const u8, hash: BinValue(16) }, s); try std.testing.expectError(Error.InvalidEncoding, v); |
