aboutsummaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
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-17Moved more generic functions to util.[ch]Daniel Stenberg
Added resolve.c to simply resolve a given host name
2005-05-16return, not exit, on several placesDaniel Stenberg
2005-05-11Modified the default HTTP headers used by libcurl:Daniel Stenberg
A) Normal non-proxy HTTP: - no more "Pragma: no-cache" (this only makes sense to proxies) B) Non-CONNECT HTTP request over proxy: - "Pragma: no-cache" is used (like before) - "Proxy-Connection: Keep-alive" (for older style 1.0-proxies) C) CONNECT HTTP request over proxy: - "Host: [name]:[port]" - "Proxy-Connection: Keep-alive"
2005-05-10prevent 64bit warningsDaniel Stenberg
2005-05-10allow the ares/config.h display to failDaniel Stenberg
2005-05-09no need to display src/config.h anymore since it is a duplicate of lib/config.hDaniel Stenberg
but we could use having a look at ares/config.h when that is used
2005-05-07Added an active disconnected state, to make the code clearer.Daniel Stenberg
2005-05-07removed unnecessary logging to ease REAL debugginDaniel Stenberg
2005-05-06Added two test cases for multipart formpost over a proxy with --anyauth. OurDaniel Stenberg
HTTP test server is a bit limited though, as it never responds to the POST request until all data has been sent (and received)...
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-04removed lots of (now) redundant loggingDaniel Stenberg
2005-05-04modify a value we are allowed toDaniel Stenberg
2005-05-04improved logging (all FTP protocol data, both ways) to possibly help us realizeDaniel Stenberg
why sometimes the control connection dies after a RETR has been sent
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-03add more info to the log to ease debuggingDaniel Stenberg
2005-05-02another <case> converted to sysreadDaniel Stenberg
2005-05-02read from the open2 filehandle with sysread, not <handle>Daniel Stenberg
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-02fix the server for the slow response caseDaniel Stenberg
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-02Make sure there's no pidfile if we cannot start the initial sockfilt tool -Daniel Stenberg
this happens for some ipv6-enabled hosts on which sockfilt cannot listen on ipv6.
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-05-01always use the libcurl-provided *printf() functionsDaniel Stenberg
2005-05-01util.h added as "source" to make it get added in dist archivesDaniel Stenberg
2005-04-30logfile name is constDaniel Stenberg
2005-04-30Moved common code to util.[ch] instead of having it duplicated in sws.cDaniel Stenberg
and sockfilt.c. For good-to-have functions for the servers written in C.
2005-04-28Set mode text on the section that is written by curl in text mode, to allowDaniel Stenberg
the runtests.pl to check this differently on operating systems that differentiate on this.
2005-04-28basic signal handler for sigint and sigkillDaniel Stenberg
2005-04-28fixed the attribute parser to better handle multiple ones, with or withoutDaniel Stenberg
quotes around the contents
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-28moved in functions from runtests.pl to enable the ftpserver to use theDaniel Stenberg
killslaves function
2005-04-28AF_INET6 for ipv6 addresses!Daniel Stenberg
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-28historic thing we will not useDaniel Stenberg
2005-04-28removed ftpsserver.plDaniel 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-28ignore more generated filesDaniel Stenberg
2005-04-28remove unused ftps-server code and fixed two warningsDaniel Stenberg
2005-04-28if diff -u makes zero output, try diff -c insteadDaniel Stenberg
2005-04-28kill slave processes when they failDaniel 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-27listen(..., 1) as 0 doesn't work on Tru64!Daniel Stenberg
2005-04-27display listening port in logDaniel Stenberg
2005-04-27show what error codes we test for too, and show 10 test case numbersDaniel Stenberg
2005-04-27keyword updateDaniel Stenberg
2005-04-27detect SSL library properly and display it on startupDaniel Stenberg