summaryrefslogtreecommitdiff
path: root/test/regress_http.c
diff options
context:
space:
mode:
authorAzat Khuzhin <a3at.mail@gmail.com>2018-11-20 06:20:51 +0300
committerAzat Khuzhin <a3at.mail@gmail.com>2018-11-20 06:22:27 +0300
commit3036f15a176b038f42d3896463c39058c6bac943 (patch)
tree9561468f3654709f479db7deca5ebcc08559a678 /test/regress_http.c
parentf8d510f61777bcb194b945163b84047969a46cef (diff)
downloadlibevent-3036f15a176b038f42d3896463c39058c6bac943.tar.gz
regress_http: fix compilation with !EVENT__HAVE_OPENSSL
Fixes: 811c63f7 ("regress: test for HTTP/HTTPS with IOCP enabled")
Diffstat (limited to 'test/regress_http.c')
-rw-r--r--test/regress_http.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/regress_http.c b/test/regress_http.c
index cb749dd9..2efc0dbf 100644
--- a/test/regress_http.c
+++ b/test/regress_http.c
@@ -4970,6 +4970,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
};