Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-09-13 | nicer reporting of disabled tests | Daniel Stenberg | |
2006-09-13 | added CVS id and clarified the comment lines | Daniel Stenberg | |
2006-09-13 | Added a generic way to disable test cases when "all" is run, and added the | Daniel Stenberg | |
FTP 3rd party transfers to that file for now until I have them sorted out. | |||
2006-09-12 | Cygwin preprocessor adjustments | Yang Tse | |
2006-09-11 | - Fixed my breakage from earlier today so that doing curl_easy_cleanup() on a | Daniel Stenberg | |
handle that is part of a multi handle first removes the handle from the stack. - Added CURLOPT_SSL_SESSIONID_CACHE and --no-sessionid to disable SSL session-ID re-use on demand since there obviously are broken servers out there that misbehave with session-IDs used. | |||
2006-09-10 | Added select_test() function to allow selecting on no sockets on | Gisle Vanem | |
Winsock. | |||
2006-09-09 | Print usage in case 'arg2 == NULL'. | Gisle Vanem | |
2006-09-08 | removed the comment that isn't valid for this file, just a copy'n paste error | Daniel Stenberg | |
2006-09-08 | test 530 is the first ever HTTP pipelining test for libcurl | Daniel Stenberg | |
2006-09-07 | Major overhaul introducing http pipelining support and shared connection | Daniel Stenberg | |
cache within the multi handle. | |||
2006-09-06 | Invoke memanalyze from the source path and hush up about killing the FTP | Daniel Stenberg | |
server as part of test cases | |||
2006-08-31 | added missing test | Daniel Stenberg | |
2006-08-23 | Use /usr/bin/env to invoke perl like the other test scripts. | Dan Fandrich | |
2006-08-19 | Based on a patch by Armel Asselin, the FTP code no longer re-issues the TYPE | Daniel Stenberg | |
command on subsequent requests on a re-used connection unless it has to. | |||
2006-08-18 | Andrew Biggs pointed out a "Expect: 100-continue" flaw where libcurl didn't | Daniel Stenberg | |
send the whole request at once, even though the Expect: header was disabled by the application. An effect of this change is also that small (< 1024 bytes) POSTs are now always sent without Expect: header since we deem it more costly to bother about that than the risk that we send the data in vain. | |||
2006-08-14 | Replace exit() with return() in main() | Yang Tse | |
2006-08-07 | Allow again proper compilation outside of the source tree | Yang Tse | |
2006-07-29 | Fix compiler warnings. | Yang Tse | |
2006-07-28 | Replace send() and recv() with swrite() and sread() macros. | Yang Tse | |
2006-07-27 | test case 277 - HTTP RFC1867-type formposting with custom Content-Type | Daniel Stenberg | |
2006-07-19 | Abort if unable to write pid file, and close socket when aborting. | Yang Tse | |
2006-07-19 | Abort if unable to write pid file. | Yang Tse | |
2006-07-17 | -Use curl_socket_t instead of int. | Yang Tse | |
-Log errno in message if setsockopt() fails. -Close listener socket on major errors. | |||
2006-07-17 | tests/libtest/lib506.c version 1.11 is now also logging CURLSHOPT_LOCKFUNC, ↵ | Yang Tse | |
CURLSHOPT_UNLOCKFUNC and CURLSHOPT_USERDATA, so we now also have to check them here. | |||
2006-07-17 | Fix compiler warning "enumerated type mixed with another type" | Yang Tse | |
2006-07-17 | Minor cleanup | Yang Tse | |
2006-07-14 | Null terminate string in buffer before feeding it to strtol() | Yang Tse | |
2006-07-13 | Change to meaningful var names and take care of a compiler warning on IRIX ↵ | Yang Tse | |
6.5.22 MIPSPro C 7.3 64bit | |||
2006-07-12 | Remove var not used. | Yang Tse | |
2006-07-12 | Log a message if not all data is sent. | Yang Tse | |
2006-07-12 | Fix compiler warning: comparison between signed and unsigned | Yang Tse | |
2006-07-12 | Place parenthesis surrounding macro parameters so that the use of sread and ↵ | Yang Tse | |
swrite is more intuitive. | |||
2006-07-12 | sread now returns ssize_t | Yang Tse | |
2006-07-12 | Pay attention when typecasting an operation | Yang Tse | |
2006-07-12 | sread now returns ssize_t | Yang Tse | |
2006-07-12 | Use platform's native types for recv() and send() arguments. | Yang Tse | |
2006-07-08 | Ates Goral pointed out that libcurl's cookie parser did case insensitive | Daniel Stenberg | |
string comparisons on the path which is incorrect and provided a patch that fixes this. I edited test case 8 to include details that test for this. | |||
2006-06-10 | Fix "'x' might be used uninitialized in this function" warnings. | Gisle Vanem | |
2006-06-09 | stricter type use to please compilers | Daniel Stenberg | |
2006-06-08 | lib525.c does a FTP upload with PORT using multi interface | Daniel Stenberg | |
2006-06-07 | NTLM2 session response support | Daniel Stenberg | |
2006-05-27 | reverted the previous .libs check for libs, but instead make mingw32 builds | Daniel Stenberg | |
more similar to other configure builds (== use .la for libext and no binext) | |||
2006-05-25 | better check for libs created in the .libs directory since libtool does this | Daniel Stenberg | |
kind of magic | |||
2006-05-24 | make sure we pass a time_t * to localtime(), and the timeval struct members | Daniel Stenberg | |
are not always time_t ones | |||
2006-05-24 | based on Tor Arntsen's fix, this should correct test case 271 to again run | Daniel Stenberg | |
fine | |||
2006-05-11 | 1 - allow much longer time for the test FTP server to startup and get verified | Daniel Stenberg | |
2 - store the time it took to verify it and allow that time to be used as %FTPTIME[23] in command lines to allow us to adjust better to slow hosts since test 190 failed on my slow solaris machine just because it hadn't gotten time to run all the way the test assumed all machines would reach before the time-out elapsed. | |||
2006-05-10 | My Solaris test server was simply too slow to be able to respond within 4 | Daniel Stenberg | |
seconds even when everything is fine! Now we allow a test server 8 seconds to respond to still be considered ok. | |||
2006-05-10 | removed variable declarations shadowing previously declared variables | Daniel Stenberg | |
2006-04-26 | David McCreedy brought line end conversions when doing FTP ASCII | Daniel Stenberg | |
transfers. They are done on non-windows systems and translate CRLF to LF. | |||
2006-04-10 | if configure found a fork(), sws supports --fork which is *NOT* used by the | Daniel Stenberg | |
ordinary test suite. Also removed the perror() calls and instead made the logging output the errno code to ease error tracking using logs. |