regress_http: fix compilation with !EVENT__HAVE_OPENSSL

Fixes: 811c63f7 ("regress: test for HTTP/HTTPS with IOCP enabled")
(cherry picked from commit 3036f15a176b038f42d3896463c39058c6bac943)
This commit is contained in:
Azat Khuzhin 2018-11-20 06:20:51 +03:00 committed by Azat Khuzhin
parent 018ac6fd42
commit 241780bdde
No known key found for this signature in database
GPG Key ID: B86086848EF8686D

View File

@ -4788,6 +4788,8 @@ struct testcase_t http_testcases[] = {
struct testcase_t http_iocp_testcases[] = {
{ "simple", http_simple_test, TT_FORK|TT_NEED_BASE|TT_ENABLE_IOCP, &basic_setup, NULL },
#ifdef EVENT__HAVE_OPENSSL
{ "https_simple", https_simple_test, TT_FORK|TT_NEED_BASE|TT_ENABLE_IOCP, &basic_setup, NULL },
#endif
END_OF_TESTCASES
};