From: Yang Tse Date: Mon, 19 Feb 2007 04:51:47 +0000 (+0000) Subject: log a message, stating the need of openssl to run this test X-Git-Tag: curl-7_16_2~280 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=75fca27f8e6ae1147c81c8b8f4e12486a4abb2a4;p=curl log a message, stating the need of openssl to run this test --- diff --git a/tests/libtest/lib509.c b/tests/libtest/lib509.c index 8f2210f5f..ad2626204 100644 --- a/tests/libtest/lib509.c +++ b/tests/libtest/lib509.c @@ -332,10 +332,19 @@ int test(char *URL) return i; } + #else /* USE_SSLEAY */ + int test(char *URL) { (void)URL; - return CURLE_FAILED_INIT; + if (curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { + fprintf(stderr, "curl_global_init() failed\n"); + return TEST_ERR_MAJOR_BAD; + } + fprintf(stderr, "libcurl lacks openssl support needed for test 509\n"); + curl_global_cleanup(); + return TEST_ERR_MAJOR_BAD; } + #endif /* USE_SSLEAY */