aboutsummaryrefslogtreecommitdiff
path: root/tests/runtests.pl
AgeCommit message (Collapse)Author
2005-12-08If unable to get curl's version, log all failure details.Yang Tse
2005-12-06Yang Tse: With last change logging directory needs to be created sooner.Daniel Stenberg
2005-12-05Yang Tse: make runtests.pl more talkative when unable to find out curl'sDaniel Stenberg
version.
2005-09-30fixed the proper path to the tftpd serverDaniel Stenberg
2005-09-15added TFTP and TFTP-ipv6 supportDaniel Stenberg
2005-08-24valgrind version 3 renames the --logfile command line option to --log-file...Daniel Stenberg
2005-07-03Andrew Bushnell provided enough info for me to tell that we badly needed toDaniel Stenberg
fix the CONNECT authentication code with multi-pass auth methods (such as NTLM) as it didn't previously properly ignore response-bodies - in fact it stopped reading after all response headers had been received. This could lead to libcurl sending the next request and reading the body from the first request as response to the second request. (I also renamed the function, which wasn't strictly necessary but...) The best fix would to once and for all make the CONNECT code use the ordinary request sending/receiving code, treating it as any ordinary request instead of the special-purpose function we have now. It should make it better for multi-interface too. And possibly lead to less code... Added test case 265 for this. It doesn't work as a _really_ good test case since the test proxy is too stupid, but the test case helps when running the debugger to verify.
2005-06-03Andres Garcia's text mode fix for the 'data' partDaniel Stenberg
2005-05-25modified output logging, fixed the ftpslave killingDaniel Stenberg
2005-05-20Add support for text mode on stdout tests as well, and add the mode=textDaniel Stenberg
to the docs.
2005-05-17Made test case 241 precheck that the given name resolves to an ipv6 address,Daniel Stenberg
or the test is skipped. Ideally, we should let this test case go over a few frequently used IPv6 localhost aliases...
2005-05-16return, not exit, on several placesDaniel Stenberg
2005-05-06When a server is clearly running, curl is now invoked to verify that it canDaniel 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-04now add --trace-time by default for curl testsDaniel Stenberg
2005-05-03*MAN* was this hard to track down. Had I just read the docs properly from theDaniel Stenberg
start... Anyway, fork() + exec() makes _two_ pids (in perl) that we need to track and kill after use. Thankyouverymuch.
2005-05-02Fixed 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-02When starting the ftp server, wait a few seconds to make really sure thatDaniel Stenberg
a pidfile for the server appears as otherwise it failed.
2005-05-02blank a few more environment variables before running a testDaniel Stenberg
2005-05-01fixed to use fork()+exec() to start test serversDaniel Stenberg
2005-04-28moved two functions to ftp.pm, made some more changes on stopping serversDaniel Stenberg
and fixed the textmode attribute thing for windows a bit
2005-04-28no, the kill servers messages need to be verbose, they're too frequentDaniel Stenberg
2005-04-28display killed pids to make it easier to see for autobuilds etcDaniel Stenberg
2005-04-28When staring a HTTP server, use the pidfile preferably since it turns outDaniel 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-28remove unused ftps-server code and fixed two warningsDaniel Stenberg
2005-04-281. no longer ask the server for the HTTPS pid, as it returns the HTTP pidDaniel 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-27detect SSL library properly and display it on startupDaniel Stenberg
2005-04-22ignore the memdump file when showing files after a failureDaniel Stenberg
2005-04-22modified the test case success reporting, added "test N out of Y" andDaniel Stenberg
"remaining: [time]" outputs to hint users about what to expect
2005-04-18Modified the FTP server to use the new 'sockfilt' program to do all the socketDaniel 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-14make the ftp server support reply/servercmd, and make SLOWDOWN work, andDaniel Stenberg
update the docs accordingly
2005-04-12support tests that requires 'OpenSSL' specificlyDaniel Stenberg
2005-03-21Make NTLM tests depend on the NTLM feature at not SSL, since the NTLM supportDaniel Stenberg
is no longer only present when built with SSL support.
2005-03-17support multiple error codes for a test case since some things just varyDaniel Stenberg
between platforms
2005-03-16check for the HTTPS server in a manner similar to how we check for the HTTPDaniel Stenberg
server
2005-02-10Moved out the valgrind report parser to valgrind.pm, to make it easier toDaniel 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-30Bugfixed the parser that scans the valgrind report outputs. I noticed that itDaniel 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-29when using valgrind, include a much longer stack traceDaniel Stenberg
2005-01-27Make the debug build get the debug dump file path from the environmentDaniel Stenberg
variable to allow the test suite to better control where it ends up.
2005-01-20Added support for "verify" => "stripfile" to strip contents of the file thatDaniel 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-17Add support for server 'ftp2' which is a second FTP server. Useful for 3rdDaniel Stenberg
party transfer tests or tests that need two FTP servers.
2005-01-15output better error detection, like when ipv6 can't resolveDaniel Stenberg
2005-01-07fixed the valgrind log check and make it possible to disable it for a specificDaniel Stenberg
test, see test 509
2004-12-21set debug curl too when -c is usedDaniel Stenberg
2004-12-17duplicate ! typoDaniel Stenberg
2004-12-16fix skip-reasonDaniel Stenberg
2004-12-16Provide better reasons for why test cases are skipped. Also, don't show theDaniel 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-16Dinar in bug report #1086121, found a file handle leak when a multipartDaniel Stenberg
formpost (including a file upload part) was aborted before the whole file was sent.
2004-12-14make sure the ipv6 http server gets its pid stored in a separate fileDaniel Stenberg
2004-12-12when failing to verify a HTTP server, display what curl said on stderr toDaniel Stenberg
help debugging. (when using ipv6 I fell over this server that didn't have the ipv6 module loaded)
2004-12-11HTTP IPv6 support added to the test suiteDaniel Stenberg