Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-02-27 | Michal Marek's cleanup of how curl_easy_setopt() is used in examples and | Daniel Stenberg | |
test code. Thanks to his curl_easy_setopt() typechecker work... | |||
2008-02-20 | - We no longer support setting the CURLOPT_URL option from inside a callback | Daniel Stenberg | |
such as the CURLOPT_SSL_CTX_FUNCTION one treat that as if it was a Location: following. The patch that introduced this feature was done for 7.11.0, but this code and functionality has been broken since about 7.15.4 (March 2006) with the introduction of non-blocking OpenSSL "connects". It was a hack to begin with and since it doesn't work and hasn't worked correctly for a long time and nobody has even noticed, I consider it a very suitable subject for plain removal. And so it was done. | |||
2008-02-13 | make this test disabled properly when built with yassl | Daniel Stenberg | |
2008-02-08 | Added tests 1022 and 1023 to validate output of curl-config --version and | Dan Fandrich | |
--vernum | |||
2008-01-29 | add verbose output to test 509 for easier debugging | Daniel Stenberg | |
2008-01-21 | undo using internal *printf() clones for test #530 | Yang Tse | |
2008-01-20 | use internal *printf() clones since snprintf() not available on all platforms | Yang Tse | |
2008-01-19 | Dmitry Kurochkin fixed test case 530 (pipelining) | Daniel Stenberg | |
2008-01-17 | Don't abort tests 518 and 537 when unable to raise the open-file soft limit | Yang Tse | |
2008-01-16 | Added test 553. This test case and code is based on the bug recipe Joe Malicki | Daniel Stenberg | |
provided for bug report #1871269, fixed on Jan 14 2008 before the 7.18.0 release. | |||
2008-01-04 | Fix 'format string' compiler warning | Yang Tse | |
2007-12-26 | In an attempt to repeat the problem in bug report #1850730 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1850730) I wrote up test case 552. The test is doing a 70K POST with a read callback and an ioctl callback over a proxy requiring Digest auth. The test case code is more or less identical to the test recipe code provided by Spacen Jasset (who submitted the bug report). | |||
2007-12-08 | correct the comment about size | Daniel Stenberg | |
2007-12-08 | add test 549 and 550 | Daniel Stenberg | |
2007-12-05 | Spacen Jasset reported a problem with doing POST (with data read with a | Daniel Stenberg | |
callback) over a proxy when NTLM is used as auth with the proxy. The bug also concerned Digest and was limited to using callback only. Spacen worked with us to provide a useful patch. I added the test case 547 and 548 to verify two variations of POST over proxy with NTLM. | |||
2007-12-05 | fix compiler warning | Daniel Stenberg | |
2007-12-05 | added test548 which uses the lib547 source file, preparing for test547 which | Daniel Stenberg | |
is supposed to repeat the bug report "NTLM proxy authentication with CURLOPT_READDATA seems broken." posted on the curl-library mailing list on dec 3 2007. | |||
2007-11-05 | Sort the directory listing because the server doesn't always do it. | Dan Fandrich | |
2007-11-01 | Ignore more features that curl-config is not expected to know about | Dan Fandrich | |
2007-11-01 | Added test case 1014 to compare curl-config --features with curl --version | Dan Fandrich | |
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-10-23 | Read callback should return 0 when no more data left | Yang Tse | |
2007-10-17 | We use this ZERO_NULL to avoid picky compiler warnings, | Yang Tse | |
when assigning a NULL pointer to a function pointer var. | |||
2007-10-02 | Renamed a couple of global variables to avoid shadowing warnings | Yang Tse | |
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 | 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-17 | Made the directory postprocessor more forgiving of input directory format | 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-08-13 | Removed redundant dependency lines | Dan Fandrich | |
2007-08-07 | Fixed some icc compiler warnings. | Dan Fandrich | |
2007-07-23 | Implemented only the parts of Patrick Monnerat's OS/400 patch that renamed | Dan Fandrich | |
some few internal identifiers to avoid conflicts, which could be useful on other platforms. | |||
2007-07-17 | Fixed test cases 613 and 614 by improving the log postprocessor to handle | Dan Fandrich | |
a new directory listing format that newer libssh2's can provide. This is probably NOT sufficient to handle all directory listing formats that server's can provide and should be revisited. | |||
2007-07-15 | convert test case 540 to use a custom Host: header as well | Daniel Stenberg | |
2007-07-15 | let's just export the whole argc + argv pair globally so that each test tool | Daniel Stenberg | |
can take advantage of it however they see fit! | |||
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-07-14 | add support for arg3 as the third argument... | Daniel Stenberg | |
2007-05-16 | Match file times occurring in the morning. | Dan Fandrich | |
2007-05-14 | Added SFTP directory listing test case 613. | Dan Fandrich | |
2007-05-02 | Check the return code from curl_multi_add_handle() | 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-23 | Added tests 610-612 to test more SFTP post-quote commands. | Dan Fandrich | |
2007-04-05 | unify fopen() failure error message among tests, allowing | Yang Tse | |
the testsuite to count them as errors of the same kind | |||
2007-04-04 | add debug message and expand comment | Yang Tse | |
2007-04-04 | test can be allowed to run if fopen() is capable of fopen()ing | Yang Tse | |
three additional files once that we have already open()ed the big bunch of file descriptors. |