Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-01-23 | Ignore XML DOCTYPEs and declarations. | Dan Fandrich | |
2007-01-23 | Convert (most of) the test data files into genuine XML. A handful still | Dan Fandrich | |
are not, due mainly to the lack of support for XML character entities (e.g. & => & ). This will make it easier to validate test files using tools like xmllint, as well as edit and view them using XML tools. | |||
2007-01-18 | Make the test script tag parser a bit more robust. | Dan Fandrich | |
Check for the .exe extension on mingw32 builds. | |||
2007-01-18 | Added precheck that curl supports the 'openssl' engine in test 307. | Dan Fandrich | |
2007-01-17 | Fixed some tag typos in the test data files. | Dan Fandrich | |
2007-01-17 | Disabled test 307 for now. | Dan Fandrich | |
2007-01-16 | Added simple OpenSSL crypto engine tests. | Dan Fandrich | |
2007-01-15 | Added TFTP upload tests. | Dan Fandrich | |
2007-01-15 | Leave the TFTPD test server running after a file upload. | Dan Fandrich | |
Flush the protocol log data so it's immediately available to the test harness. | |||
2007-01-10 | Added test for TFTP retrieve of boundary case 512 byte file. | Dan Fandrich | |
2007-01-10 | Added test of TFTP server error reporting. | Dan Fandrich | |
2007-01-04 | prevent compiler warning since we use base64.h from libcurl which now has | Daniel Stenberg | |
function(s) using SessionHandle pointers | |||
2006-12-11 | Alexey Simak found out that when doing FTP with the multi interface and | Daniel Stenberg | |
something went wrong like it got a bad response code back from the server, libcurl would leak memory. Added test case 538 to verify the fix. I also noted that the connection would get cached in that case, which doesn't make sense since it cannot be re-use when the authentication has failed. I fixed that issue too at the same time, and also that the path would be "remembered" in vain for cases where the connection was about to get closed. | |||
2006-11-25 | added the new test 282 | Daniel Stenberg | |
2006-11-25 | Venkat Akella found out that libcurl did not like HTTP responses that simply | Daniel Stenberg | |
responded with a single status line and no headers nor body. Starting now, a HTTP response on a persistent connection (i.e not set to be closed after the response has been taken care of) must have Content-Length or chunked encoding set, or libcurl will simply assume that there is no body. To my horror I learned that we had no less than 57(!) test cases that did bad HTTP responses like this, and even the test http server (sws) responded badly when queried by the test system if it is the test system. So although the actual fix for the problem was tiny, going through all the newly failing test cases got really painful and boring. | |||
2006-11-20 | Revert ftpserver.pl back to revision 1.74 Adding change done in 1.76 | Yang Tse | |
This is done to back out changes done in revisions 1.77 and 1.75 | |||
2006-11-20 | Revert runtests.pl back to revision 1.212 | Yang Tse | |
This is done to back out changes done from revisions 1.213 to 1.217 | |||
2006-11-20 | Revert ftp.pm back to revision 1.5 Adding copyright notice. | Yang Tse | |
This is done to back out changes done from revisions 1.6 to 1.10 | |||
2006-11-20 | Add some message logging | Yang Tse | |
2006-11-20 | stop slaves before stopping servers | Yang Tse | |
2006-11-20 | Revert to KILL test servers until all test servers | Yang Tse | |
have proper TERM and INT signal handlers implemented. | |||
2006-11-19 | log the sleep, like when done in test 190 | Daniel Stenberg | |
2006-11-19 | Avoid passing child pid and test server pid, using the running | Yang Tse | |
servers hash, and adjust message arguments accordingly. | |||
2006-11-19 | Comment out the use of the "warnings" module now that ftp.pm seems to | Yang Tse | |
be clear of warnings. Uncomment it if this module is further modified. The "warnings" module requires perl 5.006 or later. Previous perl versions don't have it and die on missing modules. | |||
2006-11-18 | Avoid keeping dupe pids When forked pid and test server pid is the same one. | Yang Tse | |
2006-11-18 | Fix warning "Use of uninitialized value in ...". | Yang Tse | |
If the list has only one item avoid sort subroutine. | |||
2006-11-17 | The hash of running servers is now a hash of hashes which for each running | Yang Tse | |
server holds not only its two main pids, but also the pidfile of the test server and the 'slavepidfiles' for ftp* servers. This allows a better control when stopping servers. Now from runtests.pl when test servers are stopped they are signalled in sequence TERM, INT and KILL allowing time in between for them to die. This will give us a chance of gracefully stopping test servers, which we didn't have when we were killing them in first instance. | |||
2006-11-13 | Tor Arntsen spotted this mistake | Daniel Stenberg | |
2006-11-09 | Remove showing stderr log files unconditionally for tests 518 and 537. | Yang Tse | |
Add failure checking for servers when fork()ed. Use same code path in 'stopserver' when called with a single or multiple pids. | |||
2006-11-03 | add a couple more of debugging messages | Yang Tse | |
2006-11-03 | reduce max size of dinamically allocated arrays to minimize the nasty | Yang Tse | |
behaviour some versions of IRIX exhibit of committing suicide on big mallocs instead of just returning a friendly null pointer | |||
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 | |