diff options
author | Yang Tse <yangsita@gmail.com> | 2011-09-06 19:59:42 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-09-06 19:59:42 +0200 |
commit | 653904769492d02317b7ec6274f49938d4a58585 (patch) | |
tree | 8c04895bbbf9364555c36c3ee6119b63c09cea23 /tests | |
parent | 774ad4e31d2b7a3e0bb62ac8bbce42f9fe01a2a4 (diff) | |
download | curl-653904769492d02317b7ec6274f49938d4a58585.tar.gz |
test case 583: ensure that test failures don't go unnoticed - follow-up
Diffstat (limited to 'tests')
-rw-r--r-- | tests/libtest/lib583.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/libtest/lib583.c b/tests/libtest/lib583.c index f6ac06fae..6fac67d07 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); |