aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/postprocessor_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/daemon/postprocessor_test.c')
-rw-r--r--src/daemon/postprocessor_test.c5
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,
85 int * want_off = cls; 85 int * want_off = cls;
86 int idx = *want_off; 86 int idx = *want_off;
87 87
88#if 0
88 fprintf(stderr, 89 fprintf(stderr,
89 "VC: `%s' `%s' `%s' `%s' `%.*s'\n", 90 "VC: `%s' `%s' `%s' `%s' `%.*s'\n",
90 key, filename, content_type, transfer_encoding, size, data); 91 key, filename, content_type, transfer_encoding, size, data);
92#endif
91 if (size == 0) 93 if (size == 0)
92 return MHD_YES; 94 return MHD_YES;
93 if ( (idx < 0) || 95 if ( (idx < 0) ||
@@ -213,8 +215,9 @@ int
213main (int argc, char *const *argv) 215main (int argc, char *const *argv)
214{ 216{
215 unsigned int errorCount = 0; 217 unsigned int errorCount = 0;
218
216 errorCount += test_urlencoding(); 219 errorCount += test_urlencoding();
217 errorCount += test_multipart(); 220 errorCount += test_multipart();
218 errorCount += test_nested_multipart(); 221 errorCount += test_nested_multipart();
219 if (errorCount != 0) 222 if (errorCount != 0)
220 fprintf (stderr, "Error (code: %u)\n", errorCount); 223 fprintf (stderr, "Error (code: %u)\n", errorCount);