diff options
Diffstat (limited to 'tests/libtest')
-rw-r--r-- | tests/libtest/lib556.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/libtest/lib556.c b/tests/libtest/lib556.c index a26101940..f06c5299c 100644 --- a/tests/libtest/lib556.c +++ b/tests/libtest/lib556.c @@ -77,11 +77,10 @@ int test(char *URL) if(!res) { /* we assume that sending always work */ - size_t total=0; do { /* busy-read like crazy */ - res = curl_easy_recv(curl, buf, 1024, &iolen); + res = curl_easy_recv(curl, buf, sizeof(buf), &iolen); #ifdef TPF sleep(1); /* avoid ctl-10 dump */ @@ -92,10 +91,12 @@ int test(char *URL) if(!write(STDOUT_FILENO, buf, iolen)) break; } - total += iolen; - } while(((res == CURLE_OK) || (res == CURLE_AGAIN)) && (total < 129)); + } while((res == CURLE_OK && iolen != 0) || (res == CURLE_AGAIN)); } + + if(res != CURLE_OK || iolen != 0) + return TEST_ERR_FAILURE; } test_cleanup: |