mirror of
https://github.com/moparisthebest/curl
synced 2025-02-28 09:21:50 -05:00
multi tests: OOM handling fixes - commit 629d2e34 follow-up
This commit is contained in:
parent
8165e05f29
commit
51e5a2bf3f
@ -136,6 +136,8 @@ static int loop(int num, CURLM *cm, const char* url, const char* userpwd,
|
||||
if(res)
|
||||
return res;
|
||||
|
||||
/* At this point, L is guaranteed to be greater or equal than -1. */
|
||||
|
||||
if(L != -1) {
|
||||
T.tv_sec = L/1000;
|
||||
T.tv_usec = (L%1000)*1000;
|
||||
|
@ -95,6 +95,7 @@ extern int unitfail;
|
||||
#define TEST_ERR_USAGE 118
|
||||
#define TEST_ERR_FOPEN 117
|
||||
#define TEST_ERR_FSTAT 116
|
||||
#define TEST_ERR_BAD_TIMEOUT 115
|
||||
|
||||
/*
|
||||
** Macros for test source code readability/maintainability.
|
||||
@ -301,14 +302,20 @@ extern int unitfail;
|
||||
|
||||
/* ---------------------------------------------------------------- */
|
||||
|
||||
#define exe_multi_timeout(A,B,Y,Z) do { \
|
||||
CURLMcode ec; \
|
||||
if((ec = curl_multi_timeout((A),(B))) != CURLM_OK) { \
|
||||
fprintf(stderr, "%s:%d curl_multi_timeout() failed, " \
|
||||
"with code %d (%s)\n", \
|
||||
(Y), (Z), (int)ec, curl_multi_strerror(ec)); \
|
||||
res = (int)ec; \
|
||||
} \
|
||||
#define exe_multi_timeout(A,B,Y,Z) do { \
|
||||
CURLMcode ec; \
|
||||
if((ec = curl_multi_timeout((A),(B))) != CURLM_OK) { \
|
||||
fprintf(stderr, "%s:%d curl_multi_timeout() failed, " \
|
||||
"with code %d (%s)\n", \
|
||||
(Y), (Z), (int)ec, curl_multi_strerror(ec)); \
|
||||
res = (int)ec; \
|
||||
} \
|
||||
else if(*((B)) < -1L) { \
|
||||
fprintf(stderr, "%s:%d curl_multi_timeout() succeeded, " \
|
||||
"but returned invalid timeout value (%ld)\n", \
|
||||
(Y), (Z), (long)*((B))); \
|
||||
res = TEST_ERR_BAD_TIMEOUT; \
|
||||
} \
|
||||
} WHILE_FALSE
|
||||
|
||||
#define res_multi_timeout(A,B) \
|
||||
|
Loading…
x
Reference in New Issue
Block a user