Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-05-16 | return, not exit, on several places | Daniel Stenberg | |
2005-05-06 | When a server is clearly running, curl is now invoked to verify that it can | Daniel Stenberg | |
download a file from the server before the server is considered fine to use for the given test case. This should fix the cases where the server can run but curl cannot work with it. | |||
2005-05-04 | now add --trace-time by default for curl tests | Daniel Stenberg | |
2005-05-03 | *MAN* was this hard to track down. Had I just read the docs properly from the | Daniel Stenberg | |
start... Anyway, fork() + exec() makes _two_ pids (in perl) that we need to track and kill after use. Thankyouverymuch. | |||
2005-05-02 | Fixed the FTP server read stuff when waiting for a connect after a PASV/EPSV. | Daniel Stenberg | |
Made the ftp server use the passed in pidfile name, and made runtests.pl pass it in properly. | |||
2005-05-02 | When starting the ftp server, wait a few seconds to make really sure that | Daniel Stenberg | |
a pidfile for the server appears as otherwise it failed. | |||
2005-05-02 | blank a few more environment variables before running a test | Daniel Stenberg | |
2005-05-01 | fixed to use fork()+exec() to start test servers | Daniel Stenberg | |
2005-04-28 | moved two functions to ftp.pm, made some more changes on stopping servers | Daniel Stenberg | |
and fixed the textmode attribute thing for windows a bit | |||
2005-04-28 | no, the kill servers messages need to be verbose, they're too frequent | Daniel Stenberg | |
2005-04-28 | display killed pids to make it easier to see for autobuilds etc | Daniel Stenberg | |
2005-04-28 | When staring a HTTP server, use the pidfile preferably since it turns out | Daniel Stenberg | |
sometimes the server can start but curl cannot speak to it, and then we must remember the server (in order to kill it properly) anyway. Also, make sure to kill all servers on exit everywhere. | |||
2005-04-28 | remove unused ftps-server code and fixed two warnings | Daniel Stenberg | |
2005-04-28 | 1. no longer ask the server for the HTTPS pid, as it returns the HTTP pid | Daniel Stenberg | |
(problem identified by Dan F) 2. initial text mode fix for file checks, to allow better text file testing on windows (with regard to line endings) 3. fixed to use the proper ftpserver pidfile to find pid | |||
2005-04-27 | detect SSL library properly and display it on startup | Daniel Stenberg | |
2005-04-22 | ignore the memdump file when showing files after a failure | Daniel Stenberg | |
2005-04-22 | modified the test case success reporting, added "test N out of Y" and | Daniel Stenberg | |
"remaining: [time]" outputs to hint users about what to expect | |||
2005-04-18 | Modified the FTP server to use the new 'sockfilt' program to do all the socket | Daniel Stenberg | |
level stuff. The FTP server communicates with sockfilt using perl's open2(). This enables easier IPv6 support and hopefully FTP-SSL support in the future. Added four test cases for FTP-ipv6. | |||
2005-04-14 | make the ftp server support reply/servercmd, and make SLOWDOWN work, and | Daniel Stenberg | |
update the docs accordingly | |||
2005-04-12 | support tests that requires 'OpenSSL' specificly | Daniel Stenberg | |
2005-03-21 | Make NTLM tests depend on the NTLM feature at not SSL, since the NTLM support | Daniel Stenberg | |
is no longer only present when built with SSL support. | |||
2005-03-17 | support multiple error codes for a test case since some things just vary | Daniel Stenberg | |
between platforms | |||
2005-03-16 | check for the HTTPS server in a manner similar to how we check for the HTTP | Daniel Stenberg | |
server | |||
2005-02-10 | Moved out the valgrind report parser to valgrind.pm, to make it easier to | Daniel Stenberg | |
test it outside the test suite. Now we also disable valgrind usage if libcurl was built shared, as then valgrind is only testing the wrapper-script running shell which is pointless. | |||
2005-01-30 | Bugfixed the parser that scans the valgrind report outputs. I noticed that it | Daniel Stenberg | |
previously didn't detect and report the "Conditional jump or move depends on uninitialised value(s)" error. When I fixed this, I caught a few curl bugs with it. And then I had to spend time to make the test suite IGNORE these errors when OpenSSL is used since it produce massive amounts of valgrind warnings (but only of the "Conditional..." kind it seems). So, if a test that requires SSL is run, it ignores the "Conditional..." errors, and you'll get a "valgrind PARTIAL" output instead of "valgrind OK". | |||
2005-01-29 | when using valgrind, include a much longer stack trace | Daniel Stenberg | |
2005-01-27 | Make the debug build get the debug dump file path from the environment | Daniel Stenberg | |
variable to allow the test suite to better control where it ends up. | |||
2005-01-20 | Added support for "verify" => "stripfile" to strip contents of the file that | Daniel Stenberg | |
is being checked. Also made the server retrying sleep only one second instead of three, to reduce some waiting when fooling around with the servers. | |||
2005-01-17 | Add support for server 'ftp2' which is a second FTP server. Useful for 3rd | Daniel Stenberg | |
party transfer tests or tests that need two FTP servers. | |||
2005-01-15 | output better error detection, like when ipv6 can't resolve | Daniel Stenberg | |
2005-01-07 | fixed the valgrind log check and make it possible to disable it for a specific | Daniel Stenberg | |
test, see test 509 | |||
2004-12-21 | set debug curl too when -c is used | Daniel Stenberg | |
2004-12-17 | duplicate ! typo | Daniel Stenberg | |
2004-12-16 | fix skip-reason | Daniel Stenberg | |
2004-12-16 | Provide better reasons for why test cases are skipped. Also, don't show the | Daniel Stenberg | |
SKIPPED stuff in the short output. Some platforms get quite a lot of SKIPPED and they don't add much value and only clutter screen space. | |||
2004-12-16 | Dinar in bug report #1086121, found a file handle leak when a multipart | Daniel Stenberg | |
formpost (including a file upload part) was aborted before the whole file was sent. | |||
2004-12-14 | make sure the ipv6 http server gets its pid stored in a separate file | Daniel Stenberg | |
2004-12-12 | when failing to verify a HTTP server, display what curl said on stderr to | Daniel Stenberg | |
help debugging. (when using ipv6 I fell over this server that didn't have the ipv6 module loaded) | |||
2004-12-11 | HTTP IPv6 support added to the test suite | Daniel Stenberg | |
2004-11-30 | Fixed the array comparison function even more, made the temporary files used | Daniel Stenberg | |
for diff output get created in the log/ dir and no longer deletes them since they help in understanding the problem, fixing the test case and fixing curl problems. | |||
2004-11-30 | no longer use the MIME::Base64.pm package as it seems to not be standard | Daniel Stenberg | |
on lots of perl versions, provide our own base64 decoder | |||
2004-11-29 | make it possible for a test case to depend on the feature 'libz' | Daniel Stenberg | |
2004-11-29 | Enable test cases to provide sections base64-encoded to be able to test | Daniel Stenberg | |
with binary data. | |||
2004-11-26 | last-second-before-commit changes corrected | Daniel Stenberg | |
2004-11-25 | FTP improvements: | Daniel Stenberg | |
If EPSV, EPRT or LPRT is tried and doesn't work, it will not be retried on the same server again even if a following request is made using a persistent connection. If a second request is made to a server, requesting a file from the same directory as the previous request operated on, libcurl will no longer make that long series of CWD commands just to end up on the same spot. Note that this is only for *exactly* the same dir. There is still room for improvements to optimize the CWD-sending when the dirs are only slightly different. Added test 210, 211 and 212 to verify these changes. Had to improve the test script too and added a new primitive to the test file format. | |||
2004-11-23 | introducing the client/precheck concept to allow test 518 to *only* run when | Daniel Stenberg | |
it actually can run and test the FD_SETSIZE stuff it is meant to test | |||
2004-11-22 | David Phillips fix for test 518 and my extension to make it not run on | Daniel Stenberg | |
systems that can't run it fine. | |||
2004-10-25 | just nicer output when this is seen | Daniel Stenberg | |
2004-09-08 | Now the test servers and test cases can run on a custom port number. There's | Daniel Stenberg | |
no fixed port numbers in use anymore. Starting now, the default ports the servers use are 8990 - 8993. There's no option to modify these yet, but changing the $base option in the top of the runtests.pl script. | |||
2004-08-24 | prevent files named ".nfs[something]" from being displayed when failing | Daniel Stenberg | |