libmicrohttpd

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

commit 2e8a4f8b9a521f94e8b00c15dba458493892a685
parent 7078145599b9d3b77b361de2797d704e9346fb5d
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sat, 14 Mar 2020 16:06:13 +0100

mark build as non-parallel due to port conflicts (#6117)

Diffstat:
Msrc/microhttpd/Makefile.am | 2+-
Msrc/testcurl/Makefile.am | 2+-
Msrc/testcurl/https/Makefile.am | 5+++--
Msrc/testzzuf/Makefile.am | 33++++++++++++++++++---------------
4 files changed, 23 insertions(+), 19 deletions(-)

diff --git a/src/microhttpd/Makefile.am b/src/microhttpd/Makefile.am @@ -150,7 +150,7 @@ libmicrohttpd_la_SOURCES += \ connection_https.c connection_https.h endif - +.NOTPARALLEL: check_PROGRAMS = \ test_str_compare \ diff --git a/src/testcurl/Makefile.am b/src/testcurl/Makefile.am @@ -25,7 +25,7 @@ THREAD_ONLY_TESTS = \ test_termination \ test_timeout - +.NOTPARALLEL: if HAVE_POSIX_THREADS THREAD_ONLY_TESTS += \ diff --git a/src/testcurl/https/Makefile.am b/src/testcurl/https/Makefile.am @@ -15,6 +15,8 @@ if HAVE_POSIX_THREADS test_https_get_parallel_threads endif +.NOTPARALLEL: + CPU_COUNT_DEF = -DCPU_COUNT=$(CPU_COUNT) AM_CPPFLAGS = \ @@ -35,7 +37,7 @@ THREAD_ONLY_TESTS = \ test_empty_response check_PROGRAMS = \ - test_https_get_select + test_https_get_select if USE_POSIX_THREADS check_PROGRAMS += \ @@ -177,4 +179,3 @@ test_https_get_select_LDADD = \ $(top_builddir)/src/testcurl/libcurl_version_check.a \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ $(MHD_TLS_LIB_LDFLAGS) $(MHD_TLS_LIBDEPS) @LIBGCRYPT_LIBS@ @LIBCURL@ - diff --git a/src/testzzuf/Makefile.am b/src/testzzuf/Makefile.am @@ -12,7 +12,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/src/include \ EXTRA_DIST = README socat.c THREAD_ONLY_TESTS = \ - test_long_header + test_long_header check_PROGRAMS = \ test_get \ @@ -26,7 +26,10 @@ check_PROGRAMS = \ test_post11 \ test_post_form11 \ test_put11 \ - test_put_large11 + test_put_large11 + +.NOTPARALLEL: + if USE_POSIX_THREADS check_PROGRAMS += \ @@ -44,43 +47,43 @@ test_get_SOURCES = \ test_get.c test_get_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ - @LIBCURL@ + @LIBCURL@ test_get_chunked_SOURCES = \ test_get_chunked.c test_get_chunked_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ - @LIBCURL@ + @LIBCURL@ test_post_SOURCES = \ test_post.c test_post_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ - @LIBCURL@ + @LIBCURL@ test_post_form_SOURCES = \ test_post_form.c test_post_form_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ - @LIBCURL@ + @LIBCURL@ test_put_SOURCES = \ test_put.c test_put_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ - @LIBCURL@ + @LIBCURL@ test_put_chunked_SOURCES = \ test_put_chunked.c test_put_chunked_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ - @LIBCURL@ + @LIBCURL@ test_put_large_SOURCES = \ test_put_large.c test_put_large_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ - @LIBCURL@ + @LIBCURL@ @@ -88,34 +91,34 @@ test_get11_SOURCES = \ test_get.c test_get11_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ - @LIBCURL@ + @LIBCURL@ test_post11_SOURCES = \ test_post.c test_post11_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ - @LIBCURL@ + @LIBCURL@ test_post_form11_SOURCES = \ test_post_form.c test_post_form11_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ - @LIBCURL@ + @LIBCURL@ test_put11_SOURCES = \ test_put.c test_put11_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ - @LIBCURL@ + @LIBCURL@ test_put_large11_SOURCES = \ test_put_large.c test_put_large11_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ - @LIBCURL@ + @LIBCURL@ test_long_header_SOURCES = \ test_long_header.c test_long_header_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la \ - @LIBCURL@ + @LIBCURL@