Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-11-01 | Added test case 1013 to check that curl-config --protocols matches the | Dan Fandrich | |
protocols listed in curl --version | |||
2007-10-25 | Allow test server to handle binary POSTs. | Patrick Monnerat | |
Tests 35, 544 545 added: binary data POSTs. | |||
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-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-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-08-13 | Removed redundant dependency lines | Dan Fandrich | |
2007-07-14 | Added test case 540 and lib540.c, the 'proxyauth.c' test app posted by Shmulik | Daniel Stenberg | |
Regev on the libcurl mailing list on 10 Jul 2007, converted to a test case. | |||
2007-05-14 | Added SFTP directory listing test case 613. | Dan Fandrich | |
2007-04-30 | Improved the test harness to allow running test servers on other than | Dan Fandrich | |
the default port numbers, allowing more than one test suite to run simultaneously on the same host. | |||
2007-04-03 | try not to link with unneeded libs, avoiding global LDADD | Yang Tse | |
2007-02-09 | Include both testutil.c and testutil.h, and not just testutil.c, in the | Yang Tse | |
list of source files for those tests that use it. Otherwise testutil.h might not be found by the compiler. | |||
2007-02-09 | Some tests were using functions curlx_tvnow and curlx_tvdiff which are not | Yang Tse | |
part of the official libcurl API http://curl.haxx.se/lxr/source/lib/README.curlx The documented way of using them would be to use timeval.c as a source code file. The above described method works very well when statically linking libcurl and apps, test programs, but has several drawbacks when you build a true shared libcurl (i.e. Name space clash at linkage stage as functions are defined more than once. Windows makefiles are not capable of handling this system of source-level sharing) So... Now testutil.h and testutil.c define and implement tutil_tvnow and tutil_tvdiff which replace curlx_tvnow and curlx_tvdiff for the libtest programs. Doing this we avoid the above described problems, and the code in the testsuite does not impose the need to keep those functions public in libcurl even when not part of the API. | |||
2007-01-29 | the same source file is re-used for multiple tests and I missed to add the | Daniel Stenberg | |
timval.c dependency on some of those | |||
2007-01-29 | the libtest source codes that use curlx_tv* functions MUST use the | Daniel Stenberg | |
lib/timeval.c source code since those functions are not in the API (and might not be accessible) | |||
2007-01-18 | Added precheck that curl supports the 'openssl' engine in test 307. | Dan Fandrich | |
2006-11-02 | update and split test cases 518 and 537 into its own source code file | Yang Tse | |
2006-11-01 | test 518 is all about testing libcurl functionality | Yang Tse | |
when more than FD_SETSIZE file descriptors are open. This means that if for any reason we are not able to open more than FD_SETSIZE file descriptors then test 518 should not be run. test 537 is all about testing libcurl functionality when the system has nearly exhausted the number of free file descriptors. Test 537 will try to run with very few free file descriptors. | |||
2006-10-21 | rely on the global LDADD instead of having specific ones for every program | Daniel Stenberg | |
2006-10-21 | Nir Soffer made the tests/libtest/Makefile.am use a proper variable for all | Daniel Stenberg | |
the single test applications' link and dependences, so that you easier can override those from the command line when using make. | |||
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-06 | Bogdan Nicula's hanging test case was converted to test case 533 and the test | Daniel Stenberg | |
now runs fine. | |||
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-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-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-08-07 | Allow again proper compilation outside of the source tree | Yang Tse | |
2006-06-08 | lib525.c does a FTP upload with PORT using multi interface | Daniel Stenberg | |
2006-03-03 | Prevent uploading to a URL that has no file name part. | Daniel Stenberg | |
2005-04-18 | Olivier reported that even though he used CURLOPT_PORT, libcurl clearly still | Daniel Stenberg | |
used the default port. He was right. I fixed the problem and added the test cases 521, 522 and 523 to verify the fix. | |||
2005-03-08 | Dominick Meglio reported that using CURLOPT_FILETIME when transferring a FTP | Daniel Stenberg | |
file got a Last-Modified: header written to the data stream, corrupting the actual data. This was because some conditions from the previous FTP code was not properly brought into the new FTP code. I fixed and I added test case 520 to verify. (This bug was introduced in 7.13.1) | |||
2004-12-14 | Harshal Pradhan fixed changing username/password on a persitent HTTP | Daniel Stenberg | |
connection. | |||
2004-11-19 | David Phillips' FD_SETSIZE fix | Daniel Stenberg | |
2004-11-15 | added test case 517: 22 tests of the curl_getdate() function | Daniel Stenberg | |
2004-11-11 | Fix behaviour when passing NULL to CURLOPT_POSTFIELDS and CURLOPT_HTTPPOST. | Daniel Stenberg | |
2004-06-30 | NOBODY set TRUE after a POST makes a good HEAD now | Daniel Stenberg | |
2004-06-21 | added test case 513 | Daniel Stenberg | |
2004-04-29 | new test case for a simple curl_easy_duphandle() test | Daniel Stenberg | |
2004-04-14 | Added test case 511 in an attempt to repeat bug report #934666 "storage leak | Daniel Stenberg | |
in ftp.c", but it shows no leaking. | |||
2004-01-30 | added lib510.c for callback POST using chunked encoding | Daniel Stenberg | |
2004-01-13 | use the *correct* header! | Daniel Stenberg | |
2004-01-13 | fix the include path to point to the libcurl's source dir too for the setup.h | Daniel Stenberg | |
inclusion | |||
2004-01-12 | Peter Sylvester brought code that now allows a callback to modified the URL | Daniel Stenberg | |
even when the multi interface is used, and then libcurl will simulate a "follow location" to that new URL. Test 509 was added to test this feature. | |||
2003-10-07 | test case 508 added to test callback-based POST | Daniel Stenberg | |
2003-08-19 | test507 for multi with bad host name | Daniel Stenberg | |
2003-08-11 | test case 506 added, written by Dirk Manske | Daniel Stenberg | |
2003-06-10 | more generic | Daniel Stenberg | |
2003-04-01 | lib505.c is a new test case for ftp uploading with rename | Daniel Stenberg | |
2003-03-13 | use include path from BUILD dir since we want the config.h | Daniel Stenberg | |
2003-03-12 | Setup include path to the lib dir to enable inclusion of "config.h" | Daniel Stenberg | |
2002-12-17 | don't install the test programs | Daniel Stenberg | |