https tests: supported multi-TLS selection on libcurl >= 7.56.0,

fixed error report for failed initialisation of libcurl
This commit is contained in:
Evgeny Grin (Karlson2k)
2017-11-15 16:12:12 +03:00
parent fd7d712823
commit 23324164fb
13 changed files with 44 additions and 56 deletions
+2 -5
View File
@@ -150,11 +150,8 @@ main (int argc, char *const *argv)
/* initialize random seed used by curl clients */
unsigned int iseed = (unsigned int) time (NULL);
srand (iseed);
if (0 != curl_global_init (CURL_GLOBAL_ALL))
{
fprintf (stderr, "Error: %s\n", strerror (errno));
return 99;
}
if (!testsuite_curl_global_init ())
return 99;
if (NULL == curl_version_info (CURLVERSION_NOW)->ssl_version)
{