Skip to content

Commit 8e1443c

Browse files
rikardfalkebornxquery
authored andcommitted
test1531: Add timeout
Previously, the macro TEST_HANG_TIMEOUT was unused, but since there is looping going on, we might as well add timing instead of removing it. Closes curl#2853
1 parent 6810179 commit 8e1443c

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

tests/libtest/lib1531.c

+10-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ int test(char *URL)
3939
int msgs_left; /* how many messages are left */
4040
int res = CURLE_OK;
4141

42+
start_test_timing();
43+
4244
global_init(CURL_GLOBAL_ALL);
4345

4446
/* Allocate one CURL handle per transfer */
@@ -59,6 +61,8 @@ int test(char *URL)
5961
/* we start some action by calling perform right away */
6062
curl_multi_perform(multi_handle, &still_running);
6163

64+
abort_on_test_timeout();
65+
6266
do {
6367
struct timeval timeout;
6468
int rc; /* select() return code */
@@ -127,6 +131,8 @@ int test(char *URL)
127131
curl_multi_perform(multi_handle, &still_running);
128132
break;
129133
}
134+
135+
abort_on_test_timeout();
130136
} while(still_running);
131137

132138
/* See how the transfers went */
@@ -136,14 +142,17 @@ int test(char *URL)
136142
printf("HTTP transfer completed with status %d\n", msg->data.result);
137143
break;
138144
}
145+
146+
abort_on_test_timeout();
139147
} while(msg);
140148

149+
test_cleanup:
141150
curl_multi_cleanup(multi_handle);
142151

143152
/* Free the CURL handles */
144153
curl_easy_cleanup(easy);
145154
curl_global_cleanup();
146155

147-
return 0;
156+
return res;
148157
}
149158

0 commit comments

Comments
 (0)