From d49531dd3a749d43bf3462a58574aaa31adbb27b Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sun, 2 Dec 2012 11:17:12 +0100 Subject: [PATCH] lib556: enable VERBOSE to ease debugging on failures --- tests/libtest/lib556.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/libtest/lib556.c b/tests/libtest/lib556.c index 67da87f40..98062209f 100644 --- a/tests/libtest/lib556.c +++ b/tests/libtest/lib556.c @@ -52,6 +52,7 @@ int test(char *URL) test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_CONNECT_ONLY, 1L); + test_setopt(curl, CURLOPT_VERBOSE, 1L); res = curl_easy_perform(curl);