From: Yang Tse Date: Tue, 6 Sep 2011 17:59:42 +0000 (+0200) Subject: test case 583: ensure that test failures don't go unnoticed - follow-up X-Git-Tag: curl-7_22_0~28 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=653904769492d02317b7ec6274f49938d4a58585;p=thirdparty%2Fcurl.git test case 583: ensure that test failures don't go unnoticed - follow-up --- diff --git a/tests/libtest/lib583.c b/tests/libtest/lib583.c index f6ac06fae6..6fac67d07d 100644 --- a/tests/libtest/lib583.c +++ b/tests/libtest/lib583.c @@ -76,17 +76,18 @@ int test(char *URL) } /* this tests if removing an easy handle immediately after multi - perform has been called succeeds or not. Logged afterwards */ - - res1 = (int) curl_multi_perform(multiHandle, &stillRunning); - res = (int) curl_multi_remove_handle(multiHandle, curl); + perform has been called succeeds or not. */ + fprintf(stderr, "curl_multi_perform()...\n"); + res1 = (int) curl_multi_perform(multiHandle, &stillRunning); if(res1) fprintf(stderr, "curl_multi_perform() failed, " "with code %d\n", res1); else fprintf(stderr, "curl_multi_perform() succeeded\n"); + fprintf(stderr, "curl_multi_remove_handle()...\n"); + res = (int) curl_multi_remove_handle(multiHandle, curl); if(res) fprintf(stderr, "curl_multi_remove_handle() failed, " "with code %d\n", res);