From 53c6867520ccf4712f569ee2686a1a5b04fd7c8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?okhowang=28=E7=8E=8B=E6=B2=9B=E6=96=87=29?= Date: Tue, 15 Sep 2020 18:15:24 +0800 Subject: [PATCH] test: fix windows error when mbedtls https --- test/regress_http.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/test/regress_http.c b/test/regress_http.c index 3db4ce59..b952ff47 100644 --- a/test/regress_http.c +++ b/test/regress_http.c @@ -3992,6 +3992,9 @@ http_simple_test_impl(void *arg, int ssl, int dirty, const char *uri) #ifdef EVENT__HAVE_OPENSSL bufferevent_openssl_set_allow_dirty_shutdown(bev, dirty); #endif +#ifdef EVENT__HAVE_MBEDTLS + bufferevent_mbedtls_set_allow_dirty_shutdown(bev, dirty); +#endif evcon = evhttp_connection_base_bufferevent_new( data->base, NULL, bev, "127.0.0.1", hs.port); @@ -5639,10 +5642,10 @@ 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 }, + { "https_openssl_simple", https_simple_test, TT_FORK|TT_NEED_BASE|TT_ENABLE_IOCP, &basic_setup, NULL }, #endif #ifdef EVENT__HAVE_MBEDTLS - { "https_simple", https_mbedtls_simple_test, TT_FORK|TT_NEED_BASE|TT_ENABLE_IOCP, &basic_setup, NULL }, + { "https_mbedtls_simple", https_mbedtls_simple_test, TT_FORK|TT_NEED_BASE|TT_ENABLE_IOCP, &mbedtls_setup, NULL }, #endif END_OF_TESTCASES };