HTTPS test fixes and improvements:

always skip tests if libcurl do not support HTTPS (instead of failing)
return 99 in case of global errors (MHD-unrelated)
print error result if test if failed
fixed ignored result of epoll test in test_https_get_select
allow compilation by C89 compiler
This commit is contained in:
Evgeny Grin (Karlson2k)
2017-04-10 20:00:02 +03:00
parent ab406a9e6a
commit fea6bf18a1
13 changed files with 109 additions and 51 deletions
+10 -3
View File
@@ -142,11 +142,16 @@ main (int argc, char *const *argv)
if (0 != curl_global_init (CURL_GLOBAL_ALL))
{
fprintf (stderr, "Error: %s\n", strerror (errno));
return -1;
return 99;
}
if (NULL == curl_version_info (CURLVERSION_NOW)->ssl_version)
{
fprintf (stderr, "Curl does not support SSL. Cannot run the test.\n");
return 77;
}
if (curl_uses_nss_ssl() == 0)
aes256_sha = "rsa_aes_256_sha";
aes256_sha = "rsa_aes_256_sha";
#ifdef EPOLL_SUPPORT
errorCount +=
test_wrap ("single threaded daemon, single client, epoll", &test_single_client,
@@ -181,5 +186,7 @@ main (int argc, char *const *argv)
srv_self_signed_cert_pem, MHD_OPTION_END);
curl_global_cleanup ();
return errorCount != 0;
if (errorCount != 0)
fprintf (stderr, "Failed test: %s, error: %u.\n", argv[0], errorCount);
return errorCount != 0 ? 1 : 0;
}