libmicrohttpd

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

commit 8fa269ccceaaf26eb01ab4a5c4a8e5b4b9977e7f
parent 25b227628456d8c4762bbfd5416570b6ec9b93bc
Author: Christian Grothoff <christian@grothoff.org>
Date:   Mon, 26 Sep 2016 09:46:47 +0000

test case for #4667 with concurrency

Diffstat:
Msrc/testcurl/test_delete.c | 9+++------
1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/src/testcurl/test_delete.c b/src/testcurl/test_delete.c @@ -444,12 +444,9 @@ main (int argc, char *const *argv) (NULL != strstr (strrchr (argv[0], (int) '/'), "11")) : 0; if (0 != curl_global_init (CURL_GLOBAL_WIN32)) return 2; - if (0) - { - errorCount += testInternalDelete (); - errorCount += testMultithreadedDelete (); - errorCount += testMultithreadedPoolDelete (); - } + errorCount += testInternalDelete (); + errorCount += testMultithreadedDelete (); + errorCount += testMultithreadedPoolDelete (); errorCount += testExternalDelete (); if (errorCount != 0) fprintf (stderr, "Error (code: %u)\n", errorCount);