diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/libtest/lib598.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/libtest/lib598.c b/tests/libtest/lib598.c index 8d46c6887..e9c1ad776 100644 --- a/tests/libtest/lib598.c +++ b/tests/libtest/lib598.c @@ -47,6 +47,10 @@ int test(char *URL) test_setopt(curl, CURLOPT_VERBOSE, 1L); res = curl_easy_perform(curl); + if(res) { + fprintf(stderr, "retrieve 1 failed\n"); + goto test_cleanup; + } curl_easy_reset(curl); @@ -55,6 +59,8 @@ int test(char *URL) test_setopt(curl, CURLOPT_VERBOSE, 1L); res = curl_easy_perform(curl); + if(res) + fprintf(stderr, "retrieve 2 failed\n"); test_cleanup: |