libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 094e2bbedd64cad4f112a780d3775ed352498b24
parent 4ccbeb54f9df34c7b844b5c1e562181786c9a916
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Mon, 10 Oct 2022 19:41:27 +0300

testcurl/https: enabled parallel make

All blocking issues should be fixed now.

Diffstat:
Msrc/testcurl/https/Makefile.am | 2+-
Msrc/testcurl/https/test_https_get_iovec.c | 2+-
Msrc/testcurl/https/test_https_sni.c | 2+-
Msrc/testcurl/https/test_tls_authentication.c | 2+-
Msrc/testcurl/https/test_tls_options.c | 2+-
5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/testcurl/https/Makefile.am b/src/testcurl/https/Makefile.am @@ -3,7 +3,7 @@ EMPTY_ITEM = SUBDIRS = . -.NOTPARALLEL: +@HEAVY_TESTS_NOTPARALLEL@ AM_CPPFLAGS = \ -I$(top_srcdir)/src/include \ diff --git a/src/testcurl/https/test_https_get_iovec.c b/src/testcurl/https/test_https_get_iovec.c @@ -201,7 +201,7 @@ test_secure_get (FILE *test_fd, if (MHD_NO != MHD_is_feature_supported (MHD_FEATURE_AUTODETECT_BIND_PORT)) port = 0; else - port = 3041; + port = 3045; d = MHD_start_daemon (MHD_USE_THREAD_PER_CONNECTION | MHD_USE_INTERNAL_POLLING_THREAD | MHD_USE_TLS diff --git a/src/testcurl/https/test_https_sni.c b/src/testcurl/https/test_https_sni.c @@ -264,7 +264,7 @@ main (int argc, char *const *argv) if (MHD_NO != MHD_is_feature_supported (MHD_FEATURE_AUTODETECT_BIND_PORT)) port = 0; else - port = 3060; + port = 3065; #ifdef MHD_HTTPS_REQUIRE_GCRYPT gcry_control (GCRYCTL_ENABLE_QUICK_RANDOM, 0); diff --git a/src/testcurl/https/test_tls_authentication.c b/src/testcurl/https/test_tls_authentication.c @@ -50,7 +50,7 @@ test_secure_get (void *cls, const char *cipher_suite, int proto_version) if (MHD_NO != MHD_is_feature_supported (MHD_FEATURE_AUTODETECT_BIND_PORT)) port = 0; else - port = 3070; + port = 3075; d = MHD_start_daemon (MHD_USE_THREAD_PER_CONNECTION | MHD_USE_INTERNAL_POLLING_THREAD | MHD_USE_TLS diff --git a/src/testcurl/https/test_tls_options.c b/src/testcurl/https/test_tls_options.c @@ -267,7 +267,7 @@ test_first_supported_versions (void) if (MHD_NO != MHD_is_feature_supported (MHD_FEATURE_AUTODETECT_BIND_PORT)) port = 0; /* Use system automatic assignment */ else - port = 3060; /* Use predefined port, may break parallel testing of another MHD build */ + port = 3080; /* Use predefined port, may break parallel testing of another MHD build */ vers_list = gnutls_protocol_list (); if (NULL == vers_list)