diff options
author | Yang Tse <yangsita@gmail.com> | 2006-10-19 23:35:52 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2006-10-19 23:35:52 +0000 |
commit | 19e07771d1709fd1e38bde7a4ed34bc104b01884 (patch) | |
tree | 92eab8d3059a69db18dea79f935af2dcf1b01d27 /tests/libtest | |
parent | ef267ab4491a082cf7a86127ac0937ac1e0c249a (diff) |
Set loop2 counter limit to 60 on this test to avoid a false positive.
Diffstat (limited to 'tests/libtest')
-rw-r--r-- | tests/libtest/lib530.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/libtest/lib530.c b/tests/libtest/lib530.c index e73f26f36..e83edb20c 100644 --- a/tests/libtest/lib530.c +++ b/tests/libtest/lib530.c @@ -24,7 +24,7 @@ int test(char *URL) CURLM *m; int i; int loop1 = 40; - int loop2 = 20; + int loop2 = 60; /* In windows, this will init the winsock stuff */ curl_global_init(CURL_GLOBAL_ALL); @@ -60,7 +60,7 @@ int test(char *URL) interval.tv_sec = 1; interval.tv_usec = 0; - loop2 = 20; + loop2 = 60; while ((--loop2>0) && (res == CURLM_CALL_MULTI_PERFORM)) { res = (int)curl_multi_perform(m, &running); |