Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-10-17 | buildconf already runs ares/buildconf by itself if there is an ares subdir | Daniel Stenberg | |
present, so there's no use to doing it again in this script! | |||
2006-10-11 | Remove redundant __CYGWIN__ symbol check | Yang Tse | |
2006-10-10 | Compiler warning fix | Yang Tse | |
2006-10-10 | Call curl_global_cleanup() in all code paths before exiting test | Yang Tse | |
2006-10-09 | Added test case 536 in an attempt to add Bogdan Nicula's problematic case | Daniel Stenberg | |
with multi interface and pipelining. This test just works and did not repeat the problem his test code showed, but could still serve as a useful test. | |||
2006-10-09 | used for test 535 too | Daniel Stenberg | |
2006-10-09 | Compiler warning fix | Yang Tse | |
2006-10-09 | Bogdan Nicula's second test case (posted Sun, 08 Oct 2006) converted to test | Daniel Stenberg | |
case 535 and it now runs fine. Again a problem with the pipelining code not taking all possible (error) conditions into account. | |||
2006-10-08 | test 534 added in an attempt to repeat Bogdan Nicula's bug... | Daniel Stenberg | |
2006-10-08 | modified lib533 to accept both URLs on the command line | Daniel Stenberg | |
2006-10-08 | Fix a "sockfilt" leak. When a new 'data' connection sockfilt server is started, | Daniel Stenberg | |
make sure that a previously used one is killed first (since they re-use the same .pid file etc) | |||
2006-10-06 | Bogdan Nicula's hanging test case was converted to test case 533 and the test | Daniel Stenberg | |
now runs fine. | |||
2006-10-06 | catch silly mistakes better | Daniel Stenberg | |
2006-10-04 | Dmitriy Sergeyev provided an example source code that crashed CVS libcurl | Daniel Stenberg | |
but that worked nicely in 7.15.5. I converted it into test case 532 and fixed the problem. | |||
2006-09-30 | Support for FTP third party transfers is now dropped | Daniel Stenberg | |
2006-09-28 | Reported in #1561470 (http://curl.haxx.se/bug/view.cgi?id=1561470), libcurl | Daniel Stenberg | |
would crash if a bad function sequence was used when shutting down after using the multi interface (i.e using easy_cleanup after multi_cleanup) so precautions have been added to make sure it doesn't any more - test case 529 was added to verify. | |||
2006-09-27 | As reported in bug: #1566077 the former URL mentioned in the generated cookie | Daniel Stenberg | |
jar has died and we now instead point out our own version of that | |||
2006-09-24 | allow user in passwd state for test 280 to work (--ftp-alternative-to-user) | Daniel Stenberg | |
2006-09-23 | filled in some docs for the FTP server control commands | Daniel Stenberg | |
2006-09-23 | added simple test of --ftp-alternative-to-user | Daniel Stenberg | |
2006-09-21 | Added test case 531 in an attempt to repeat bug report #1561470 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1561470) that is said to crash when an FTP upload fails with the multi interface. It did not, but I made a failed upload still assume the control connection to be fine. | |||
2006-09-20 | Armel Asselin fixed problems when you gave a proxy URL with user name and | Daniel Stenberg | |
empty password or no password at all. Test case 278 and 279 were added to verify. | |||
2006-09-13 | 'in6addr_any' must be placed in .c-file. Added 'REAL_WIN32' for | Gisle Vanem | |
all Win32 targets except CygWin. Cleanup. | |||
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 | |