summaryrefslogtreecommitdiff
path: root/tests/forms-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/forms-test.c')
-rw-r--r--tests/forms-test.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/forms-test.c b/tests/forms-test.c
index a3401db8..1d89743b 100644
--- a/tests/forms-test.c
+++ b/tests/forms-test.c
@@ -95,8 +95,6 @@ do_hello_tests (gconstpointer uri)
return;
#endif
- debug_printf (1, "Hello tests (GET, application/x-www-form-urlencoded)\n");
-
for (n = 0; n < G_N_ELEMENTS (tests); n++) {
do_hello_test (n, FALSE, uri);
do_hello_test (n, TRUE, uri);
@@ -146,8 +144,6 @@ do_md5_test_curl (gconstpointer data)
return;
#endif
- debug_printf (1, "\nMD5 test via curl (POST, multipart/form-data)\n");
-
md5 = get_md5_data (NULL, NULL);
if (!md5)
return;
@@ -192,8 +188,6 @@ do_md5_test_libsoup (gconstpointer data)
SoupMessage *msg;
SoupSession *session;
- debug_printf (1, "\nMD5 test via libsoup (POST, multipart/form-data)\n");
-
md5 = get_md5_data (&contents, &length);
if (!md5)
return;
@@ -235,8 +229,6 @@ do_form_decode_test (void)
return;
#endif
- debug_printf (1, "\nDecode tests\n");
-
/* Test that the code handles multiple values with the same key. */
table = soup_form_decode ("foo=first&foo=second&foo=third");