aboutsummaryrefslogtreecommitdiff
path: root/src/testcurl
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2023-06-12 20:23:25 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2023-06-20 23:22:53 +0300
commitdce208464a89dfe8e72a4bc4e7aa6b0c8b2563bf (patch)
treed1c9b8fdd83e0128de02e3270c52f9754b3422f5 /src/testcurl
parent4e8e5e653d7862378e4f3522905e2f4b4ed4067b (diff)
downloadlibmicrohttpd-dce208464a89dfe8e72a4bc4e7aa6b0c8b2563bf.tar.gz
libmicrohttpd-dce208464a89dfe8e72a4bc4e7aa6b0c8b2563bf.zip
tests: minor improvemnts
Diffstat (limited to 'src/testcurl')
-rw-r--r--src/testcurl/test_long_header.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/testcurl/test_long_header.c b/src/testcurl/test_long_header.c
index a423d3b5..0f679d63 100644
--- a/src/testcurl/test_long_header.c
+++ b/src/testcurl/test_long_header.c
@@ -304,6 +304,8 @@ main (int argc, char *const *argv)
304 errorCount += testLongHeaderGet (VERY_LONG / 2 + 1893); 304 errorCount += testLongHeaderGet (VERY_LONG / 2 + 1893);
305 if (errorCount != 0) 305 if (errorCount != 0)
306 fprintf (stderr, "Error (code: %u)\n", errorCount); 306 fprintf (stderr, "Error (code: %u)\n", errorCount);
307 else
308 printf ("Test succeed.\n");
307 curl_global_cleanup (); 309 curl_global_cleanup ();
308 return (0 == errorCount) ? 0 : 1; /* 0 == pass */ 310 return (0 == errorCount) ? 0 : 1; /* 0 == pass */
309} 311}