Commit 22db1e166a

Andrew Kelley <andrew@ziglang.org>
2022-12-22 00:16:31
std.crypto.CertificateBundle: disable test on WASI
1 parent 7ed7bd2
Changed files (1)
lib
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);