commit 22db1e166a6e3721df21546209fbfe9df7ddc0c0 (tree) parent 7ed7bd247ed301b2904379570ea86abd04c65618 Author: Andrew Kelley <andrew@ziglang.org> Date: Wed, 21 Dec 2022 16:16:31 -0700 std.crypto.CertificateBundle: disable test on WASI Diffstat:
| M | lib/std/crypto/CertificateBundle.zig | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/lib/std/crypto/CertificateBundle.zig b/lib/std/crypto/CertificateBundle.zig @@ -448,7 +448,9 @@ const MapContext = struct { } }; -test { +test "scan for OS-provided certificates" { + if (builtin.os.tag == .wasi) return error.SkipZigTest; + var bundle: CertificateBundle = .{}; defer bundle.deinit(std.testing.allocator);