aboutsummaryrefslogtreecommitdiff
path: root/src/testcurl
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-05-15 21:02:48 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-05-15 21:02:48 +0300
commit7899565cef80da2787920ed267a01060b45bdb43 (patch)
treef045472ec0544453bad4328ec769c6204189d6eb /src/testcurl
parentd08fb47c0a53a658fdd97fd1a4e265aade576418 (diff)
downloadlibmicrohttpd-7899565cef80da2787920ed267a01060b45bdb43.tar.gz
libmicrohttpd-7899565cef80da2787920ed267a01060b45bdb43.zip
Made cookie parsing optional feature
Diffstat (limited to 'src/testcurl')
-rw-r--r--src/testcurl/Makefile.am8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/testcurl/Makefile.am b/src/testcurl/Makefile.am
index 58158b18..4b0c3d1c 100644
--- a/src/testcurl/Makefile.am
+++ b/src/testcurl/Makefile.am
@@ -102,8 +102,6 @@ check_PROGRAMS = \
102 test_add_conn_nolisten \ 102 test_add_conn_nolisten \
103 test_process_headers \ 103 test_process_headers \
104 test_process_arguments \ 104 test_process_arguments \
105 test_parse_cookies \
106 test_parse_cookies_invalid \
107 test_toolarge_method \ 105 test_toolarge_method \
108 test_toolarge_url \ 106 test_toolarge_url \
109 test_toolarge_request_header_name \ 107 test_toolarge_request_header_name \
@@ -142,6 +140,12 @@ check_PROGRAMS = \
142 test_callback \ 140 test_callback \
143 $(EMPTY_ITEM) 141 $(EMPTY_ITEM)
144 142
143if ENABLE_COOKIE
144check_PROGRAMS += \
145 test_parse_cookies \
146 test_parse_cookies_invalid
147endif
148
145if HEAVY_TESTS 149if HEAVY_TESTS
146check_PROGRAMS += \ 150check_PROGRAMS += \
147 perf_get 151 perf_get