From c535e281c6b761dac610b18e2883ca3ff288b156 Mon Sep 17 00:00:00 2001 From: Kareem Date: Thu, 14 Aug 2025 11:34:04 -0700 Subject: [PATCH] Skip unit test when using Apple native cert validation. --- tests/api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/api.c b/tests/api.c index 5bc6422e65..30bc607dfc 100644 --- a/tests/api.c +++ b/tests/api.c @@ -3147,7 +3147,7 @@ static int test_wolfSSL_CertManagerLoadCABufferType(void) { EXPECT_DECLS; #if !defined(NO_FILESYSTEM) && !defined(NO_CERTS) && !defined(NO_TLS) && \ - !defined(NO_RSA) + !defined(NO_RSA) && !defined(WOLFSSL_TEST_APPLE_NATIVE_CERT_VALIDATION) const char* ca_cert = "./certs/ca-cert.pem"; const char* int1_cert = "./certs/intermediate/ca-int-cert.pem"; const char* int2_cert = "./certs/intermediate/ca-int2-cert.pem";