Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-10-12 | Fixed a couple of typos that messed up the tests. | Dan Fandrich | |
2007-10-12 | Added some <keywords> sections and use some key words more consistently. | Dan Fandrich | |
2007-10-11 | Fixed the -l option of runtests.pl | Dan Fandrich | |
Added support for skipping tests based on key words. | |||
2007-10-09 | also log error message string | Yang Tse | |
2007-10-09 | logmsg already appends '\n' | Yang Tse | |
2007-10-04 | I enabled test 1009 and made the --local-port use a wide range to reduce the | Daniel Stenberg | |
risk of failures. | |||
2007-10-04 | Kim Rinnewitz reported that --local-port didn't work with TFTP transfers. | Daniel Stenberg | |
This happened because the tftp code always uncondionally did a bind() without caring if one already had been done and then it failed. I wrote a test case (1009) to verify this, but it is a bit error-prone since it will have to pick a fixed local port number and since the tests are run on so many different hosts in different situations I add it in disabled state. | |||
2007-10-04 | On error, close "log/server.response" | Yang Tse | |
2007-10-03 | If TCP_NODELAY is not defined we can't disable the Nagle algorithm | Yang Tse | |
2007-10-02 | Renamed a couple of global variables to avoid shadowing warnings | Yang Tse | |
2007-10-02 | known bug #46: chunked-encoded CONNECT responses from a http proxy now works. | Daniel Stenberg | |
Added test case 1008 to verify. Note that #47 is still there. | |||
2007-10-02 | Disable the Nagle algorithm and send back responses in small chunks in an | Daniel Stenberg | |
attempt to force smaller bits to get read by clients. | |||
2007-09-30 | Added test536 that was accidentally missing. I also wrote up a new makefile | Daniel Stenberg | |
target called 'filecheck' so that if you run 'make filecheck' in this directory it'll check if the local files are also mentioned in the Makefile.am so that they are properly included in release archives! | |||
2007-09-30 | Alex Fishman reported a curl_easy_escape() problem that was made the | Daniel Stenberg | |
function do wrong on all input bytes that are >= 0x80 (decimal 128) due to a signed / unsigned mistake in the code. I fixed it and added test case 543 to verify. | |||
2007-09-30 | Fix missing right parenthesis | Yang Tse | |
2007-09-30 | Fix comparison between signed and unsigned | Yang Tse | |
2007-09-27 | Removed cut-and-paste cruft leading to fclose() of an unopened file | Dan Fandrich | |
2007-09-27 | Enabled a few more gcc warnings with --enable-debug. Renamed a few | Dan Fandrich | |
variables to avoid shadowing global declarations. | |||
2007-09-26 | Philip Langdale provided the new CURLOPT_POST301 option for | Daniel Stenberg | |
curl_easy_setopt() that alters how libcurl functions when following redirects. It makes libcurl obey the RFC2616 when a 301 response is received after a non-GET request is made. Default libcurl behaviour is to change method to GET in the subsequent request (like it does for response code 302 - because that's what many/most browsers do), but with this CURLOPT_POST301 option enabled it will do what the spec says and do the next request using the same method again. I.e keep POST after 301. The curl tool got this option as --post301 Test case 1011 and 1012 were added to verify. | |||
2007-09-26 | Max Katsev reported that when doing a libcurl FTP request with | Daniel Stenberg | |
CURLOPT_NOBODY enabled but not CURLOPT_HEADER, libcurl wouldn't do TYPE before it does SIZE which makes it less useful. I walked over the code and made it do this properly, and added test case 542 to verify it. | |||
2007-09-24 | Immanuel Gregoire fixed KNOWN_BUGS #44: --ftp-method nocwd did not handle | Daniel Stenberg | |
URLs ending with a slash properly (it should list the contents of that directory). Test case 351 brought back and also test 1010 was added. | |||
2007-09-20 | Added variable substitution to the <verify><file> section. | Dan Fandrich | |
Made a few more tests work remotely. | |||
2007-09-18 | Use double quotes in command lines for consistency. | Dan Fandrich | |
2007-09-18 | IPv6 is a required feature for these two tests, even if it's not obvious. | Dan Fandrich | |
2007-09-17 | Fixed the required server entry | Dan Fandrich | |
2007-09-17 | Changed some FTP tests to validate the format of the PORT and EPRT commands | Dan Fandrich | |
sent by curl, if not the addresses themselves. | |||
2007-09-17 | Added %CLIENTIP and %CLIENT6IP data file substitution variables. | Dan Fandrich | |
Added hooks to the test suite to make it possible to test a curl running on a remote host. | |||
2007-09-17 | Allow setting the IP address on which to listen for connections. | Dan Fandrich | |
2007-09-17 | Make the ftp server connect to the address given by curl in the PORT/EPRT | Dan Fandrich | |
instead of hard-coding it to 127.0.0.1 | |||
2007-09-17 | Made the directory postprocessor more forgiving of input directory format | Dan Fandrich | |
2007-09-15 | Michal Marek made libcurl automatically append ";type=<a|i>" when using HTTP | Daniel Stenberg | |
proxies for FTP urls. | |||
2007-09-14 | Replaced 127.0.0.1 with %HOSTIP where possible | Dan Fandrich | |
2007-09-12 | Extracting the CURLINFO_PRIVATE pointer makes no point since nothing set | Daniel Stenberg | |
it. This caused a segfault in some fprintf() implementations. Like on Solaris. | |||
2007-09-11 | Daniel S (12 September 2007) | Daniel Stenberg | |
- Bug report #1792649 (http://curl.haxx.se/bug/view.cgi?id=1792649) pointed out a problem with doing an empty upload over FTP on a re-used connection. I added test case 541 to reproduce it and to verify the fix. - I noticed while writing test 541 that the FTP code wrongly did a CWD on the second transfer as it didn't store and remember the "" path from the previous transfer so it would instead CWD to the entry path as stored. This worked, but did a superfluous command. Thus, test case 541 now also verifies this fix. | |||
2007-09-07 | Added test case 1007 to test permission problem when uploading with TFTP | Dan Fandrich | |
(to validate bug #1790403). | |||
2007-09-05 | Minor updates | Dan Fandrich | |
2007-08-30 | Added more accurate error code returns from SFTP operations. Added test | Dan Fandrich | |
case 615 to test an SFTP upload failure. | |||
2007-08-30 | Renamed several libcurl error codes and options to make them more general | Dan Fandrich | |
and allow reuse by multiple protocols. Several unused error codes were removed. In all cases, macros were added to preserve source (and binary) compatibility with the old names. These macros are subject to removal at a future date, but probably not before 2009. An application can be tested to see if it is using any obsolete code by compiling it with the CURL_NO_OLDIES macro defined. Documented some newer error codes in libcurl-error(3) | |||
2007-08-30 | Fixed a few compiler warnings. Try to do a slightly better job of | Dan Fandrich | |
cleaning up after an OOM condition in curl_multi_add_handle | |||
2007-08-28 | Mention that 'make test' does more than just run all the tests (suggested | Dan Fandrich | |
by Kris/tinker105 in bug #1779054) and mention the torture tests. | |||
2007-08-24 | Bug report #1779054 (http://curl.haxx.se/bug/view.cgi?id=1779054) pointed | Daniel Stenberg | |
out that libcurl didn't deal with large responses from server commands, when the single response was consisting of multiple lines but of a total size of 16KB or more. Dan Fandrich improved the ftp test script and provided test case 1006 to repeat the problem, and I fixed the code to make sure this new test case runs fine. | |||
2007-08-23 | Added test case 1005 to test excessively-long replies spread out over | Dan Fandrich | |
multiple lines (similar to test case 1003). | |||
2007-08-23 | Allow ftp server alternate replies to contain backslash-escaped control | Dan Fandrich | |
characters. | |||
2007-08-23 | Need even more time to wait for an accept. | Dan Fandrich | |
2007-08-23 | Added test1004 to validate a previous fix for a memory leak when an | Dan Fandrich | |
empty proxy server is selected. | |||
2007-08-22 | Bug report #1779054 (http://curl.haxx.se/bug/view.cgi?id=1779054) pointed | Daniel Stenberg | |
out that libcurl didn't deal with very long (>16K) FTP server response lines properly. Starting now, libcurl will chop them off (thus the client app will not get the full line) but survive and deal with them fine otherwise. Test case 1003 was added to verify this. | |||
2007-08-22 | added a size > buffer size check to make it easier to track this in the | Daniel Stenberg | |
future | |||
2007-08-22 | Upped the buffer size to 17000+ bytes to prepare for the upcoming test 1003 | Daniel Stenberg | |
that verfies ridiculously long server response lines. Also changed sprintf to snprintf in a few places. | |||
2007-08-20 | Increase timeout for accept for improved reliability on loaded servers. | Dan Fandrich | |
2007-08-17 | remove stupid comment since there's no content in this test case | Daniel Stenberg | |