Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-11-03 | fix comments and renumber rlimit return codes | Yang Tse | |
fix closing of fd's when limit is reached | |||
2006-11-03 | fix comments and renumber rlimit return codes | Yang Tse | |
2006-11-02 | remove leftover comment | Yang Tse | |
2006-11-02 | update and split test cases 518 and 537 into its own source code file | Yang Tse | |
2006-11-02 | code cleanup | Yang Tse | |
2006-11-02 | use our internal string functions and replace sprintf with snprintf | Yang Tse | |
2006-11-02 | Update protocol verification end of lines | Yang Tse | |
2006-11-02 | check symbol HAVE_UNISTD_H instead of UNISTD_H to include unistd.h | Yang Tse | |
2006-11-01 | test 518 is all about testing libcurl functionality | Yang Tse | |
when more than FD_SETSIZE file descriptors are open. This means that if for any reason we are not able to open more than FD_SETSIZE file descriptors then test 518 should not be run. test 537 is all about testing libcurl functionality when the system has nearly exhausted the number of free file descriptors. Test 537 will try to run with very few free file descriptors. | |||
2006-10-31 | Show stderr log file for test 518 unconditionally. | Yang Tse | |
In this way we'll be able to sort out problems that might arise in the prechek phase of the 518 test. Once that 518 has been verified this change will be undone. | |||
2006-10-31 | Sync comment with code and add three messages more | Yang Tse | |
2006-10-30 | Address some pitfalls in the rlimit() function check that were | Yang Tse | |
preventing execution of this test on many platforms | |||
2006-10-29 | Compiler warning fix | Yang Tse | |
2006-10-27 | a small unification of the error text on failed server startups | Daniel Stenberg | |
2006-10-27 | Update copyright year, since the file has been modified | Yang Tse | |
2006-10-27 | 30 seconds isn't long enough for this test on a loaded server. | Yang Tse | |
2006-10-26 | Use proper 'stat' structure for fstat(). I.e. 'struct _stati64' and ↵ | Gisle Vanem | |
'_fstati64()' on Win32. | |||
2006-10-26 | Improved rlimit logic: | Yang Tse | |
- Take in account RLIM_INFINITY. - Verify that soft limit is actually changed when doing so. - Show errno in case getrlimit or setrlimit fails. - Keep file descriptors open only while runing this test. | |||
2006-10-26 | 30 seconds isn't long enough for this test on a loaded server. | Yang Tse | |
2006-10-25 | Fixed CURLOPT_FAILONERROR to return CURLE_HTTP_RETURNED_ERROR even for the | Daniel Stenberg | |
case when 401 or 407 are returned, *IF* no auth credentials have been given. The CURLOPT_FAILONERROR option is not possible to make fool-proof for 401 and 407 cases when auth credentials is given, but we've now covered this somewhat more. You might get some amounts of headers transferred before this situation is detected, like for when a "100-continue" is received as a response to a POST/PUT and a 401 or 407 is received immediately afterwards. Added test 281 to verify this change. | |||
2006-10-25 | Add project notice and file Id | Yang Tse | |
2006-10-25 | Compiler warning fix | Yang Tse | |
2006-10-25 | Use curl_global_init() and curl_global_cleanup(). | Yang Tse | |
Improve cleanup in case of initialization failure. | |||
2006-10-24 | Abort test if it seems that it would have run forever. This is just to prevent | Yang Tse | |
test hanging and actually is an indication that there's a condition that is not being properly handled at some point in the library. Remove a pair of braces and adjust indentation appropriately. | |||
2006-10-23 | Avoid trying to compare more than strlen bytes. | Yang Tse | |
2006-10-23 | 30 seconds isn't long enough for this test on a loaded server. | Dan Fandrich | |
2006-10-23 | Replace is*() macros with our own IS*() ones. | Yang Tse | |
2006-10-21 | rely on the global LDADD instead of having specific ones for every program | Daniel Stenberg | |
2006-10-21 | Nir Soffer made the tests/libtest/Makefile.am use a proper variable for all | Daniel Stenberg | |
the single test applications' link and dependences, so that you easier can override those from the command line when using make. | |||
2006-10-21 | Armel Asselin separated CA cert verification problems from problems with | Daniel Stenberg | |
reading the (local) CA cert file to let users easier pinpoint the actual problem. CURLE_SSL_CACERT_BADFILE (77) is the new libcurl error code. | |||
2006-10-21 | Compiler warning fix | Yang Tse | |
2006-10-20 | Oops! Actually set the limit to 30 seconds. | Yang Tse | |
2006-10-20 | Decrease the posibility of aborting a test which actually is not | Yang Tse | |
stale by replacing loop counters with timeouts. In this way the main loop of the test will be allowed to run up to 30 seconds on any platform before aborting it. | |||
2006-10-19 | Set loop2 counter limit to 60 on this test to avoid a false positive. | Yang Tse | |
2006-10-19 | Replace tabs with spaces and Compiler warning fix. | Yang Tse | |
2006-10-19 | Compiler warning fix | Yang Tse | |
2006-10-19 | When aborting, show loop counter values when more than one counter exists. | Yang Tse | |
2006-10-19 | Abort test if it seems that it would have run forever. This is just to prevent | Yang Tse | |
test hanging and actually is an indication that there's a condition that is not being properly handled at some point in the library. Loop counter limits might need to be further increased on false positives. | |||
2006-10-18 | Check for USE_WINSOCK instead of WIN32 where the check was done | Yang Tse | |
to verify winsock API availability. | |||
2006-10-17 | buildconf already runs ares/buildconf by itself if there is an ares subdir | Daniel Stenberg | |
present, so there's no use to doing it again in this script! | |||
2006-10-11 | Remove redundant __CYGWIN__ symbol check | Yang Tse | |
2006-10-10 | Compiler warning fix | Yang Tse | |
2006-10-10 | Call curl_global_cleanup() in all code paths before exiting test | Yang Tse | |
2006-10-09 | Added test case 536 in an attempt to add Bogdan Nicula's problematic case | Daniel Stenberg | |
with multi interface and pipelining. This test just works and did not repeat the problem his test code showed, but could still serve as a useful test. | |||
2006-10-09 | used for test 535 too | Daniel Stenberg | |
2006-10-09 | Compiler warning fix | Yang Tse | |
2006-10-09 | Bogdan Nicula's second test case (posted Sun, 08 Oct 2006) converted to test | Daniel Stenberg | |
case 535 and it now runs fine. Again a problem with the pipelining code not taking all possible (error) conditions into account. | |||
2006-10-08 | test 534 added in an attempt to repeat Bogdan Nicula's bug... | Daniel Stenberg | |
2006-10-08 | modified lib533 to accept both URLs on the command line | Daniel Stenberg | |
2006-10-08 | Fix a "sockfilt" leak. When a new 'data' connection sockfilt server is started, | Daniel Stenberg | |
make sure that a previously used one is killed first (since they re-use the same .pid file etc) |