diff options
Diffstat (limited to 'src/daemon/postprocessor_test.c')
-rw-r--r-- | src/daemon/postprocessor_test.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/daemon/postprocessor_test.c b/src/daemon/postprocessor_test.c index 46f2463a..a931b300 100644 --- a/src/daemon/postprocessor_test.c +++ b/src/daemon/postprocessor_test.c @@ -85,9 +85,11 @@ value_checker(void * cls, int * want_off = cls; int idx = *want_off; +#if 0 fprintf(stderr, "VC: `%s' `%s' `%s' `%s' `%.*s'\n", key, filename, content_type, transfer_encoding, size, data); +#endif if (size == 0) return MHD_YES; if ( (idx < 0) || @@ -213,8 +215,9 @@ int main (int argc, char *const *argv) { unsigned int errorCount = 0; + errorCount += test_urlencoding(); - errorCount += test_multipart(); + errorCount += test_multipart(); errorCount += test_nested_multipart(); if (errorCount != 0) fprintf (stderr, "Error (code: %u)\n", errorCount); |