From 3aab542e77546b344649edeae85157d93989faa5 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Thu, 22 Mar 2012 04:58:38 +0100 Subject: [PATCH] test #598: OOM handling fixes --- tests/libtest/lib598.c | 6 ++++++ 1 file changed, 6 insertions(+) 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: