History log of /curl/tests/libtest/Makefile.am (Results 76 – 100 of 146)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 0e5da5b8 07-Jul-2008 Daniel Stenberg

- Scott Barrett provided a test case for a segfault in the FTP code and the
fix for it. It occured when you did a FTP transfer using
CURLFTPMETHOD_SINGLECWD and then did another one on th

- Scott Barrett provided a test case for a segfault in the FTP code and the
fix for it. It occured when you did a FTP transfer using
CURLFTPMETHOD_SINGLECWD and then did another one on the same easy handle but
switched to CURLFTPMETHOD_NOCWD. Due to the "dir depth" variable not being
cleared properly. Scott's test case is now known as test 539 and it
verifies the fix.

show more ...


Revision tags: curl-7_18_2
# 7f88e8ba 13-May-2008 Daniel Stenberg

Added test case 556 that uses curl_easy_send() and curl_easy_recv()


# b8193b63 25-Apr-2008 Yang Tse

tests/libtest/delay.pl no longer used. The 'delay' attribute of the
test harness <command> subsection now provides this functionality.


# d3f46eb6 18-Apr-2008 Yang Tse

test 1001 needs a small delay between client part execution and test
result file verifications to allow the test server to completely write
out all files


# 03310713 16-Apr-2008 Daniel Stenberg

Added test case 555, a variation of 547 but using multi interface instead of
easy. This was reported not working by Penugonda Chenna Reddy in
http://curl.haxx.se/mail/lib-2008-04/0046.html bu

Added test case 555, a variation of 547 but using multi interface instead of
easy. This was reported not working by Penugonda Chenna Reddy in
http://curl.haxx.se/mail/lib-2008-04/0046.html but I fail to repeat that
problem.

show more ...


# a2314225 31-Mar-2008 Daniel Stenberg

- Added CURLFORM_STREAM as a supported option to curl_formadd() to allow an
application to provide data for a multipart with the read callback. Note
that the size needs to be provided wit

- Added CURLFORM_STREAM as a supported option to curl_formadd() to allow an
application to provide data for a multipart with the read callback. Note
that the size needs to be provided with CURLFORM_CONTENTSLENGTH when the
stream option is used. This feature is verified by the new test case
554. This feature was sponsored by Xponaut.

show more ...


Revision tags: curl-7_18_1
# 55700cb0 20-Feb-2008 Daniel Stenberg

- We no longer support setting the CURLOPT_URL option from inside a callback
such as the CURLOPT_SSL_CTX_FUNCTION one treat that as if it was a Location:
following. The patch that introdu

- We no longer support setting the CURLOPT_URL option from inside a callback
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.

show more ...


# ce164956 08-Feb-2008 Dan Fandrich

Added tests 1022 and 1023 to validate output of curl-config --version and
--vernum


Revision tags: curl-7_18_0
# 3caeb0a9 21-Jan-2008 Yang Tse

undo using internal *printf() clones for test #530


# a4eddf0d 20-Jan-2008 Yang Tse

use internal *printf() clones since snprintf() not available on all platforms


# c522f349 16-Jan-2008 Daniel Stenberg

Added test 553. This test case and code is based on the bug recipe Joe Malicki
provided for bug report #1871269, fixed on Jan 14 2008 before the 7.18.0
release.


# f277124a 26-Dec-2007 Daniel Stenberg

In an attempt to repeat the problem in bug report #1850730
(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 ioc

In an attempt to repeat the problem in bug report #1850730
(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).

show more ...


# cc0ce38a 08-Dec-2007 Daniel Stenberg

add test 549 and 550


# 4e4f33a2 05-Dec-2007 Daniel Stenberg

added test548 which uses the lib547 source file, preparing for test547 which
is supposed to repeat the bug report "NTLM proxy authentication with
CURLOPT_READDATA seems broken." posted on the

added test548 which uses the lib547 source file, preparing for test547 which
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.

show more ...


# 16897354 01-Nov-2007 Dan Fandrich

Added test case 1013 to check that curl-config --protocols matches the
protocols listed in curl --version


Revision tags: curl-7_17_1
# 0678a51d 25-Oct-2007 Patrick Monnerat

Allow test server to handle binary POSTs.
Tests 35, 544 545 added: binary data POSTs.


# ec08e2f9 30-Sep-2007 Daniel Stenberg

Alex Fishman reported a curl_easy_escape() problem that was made the
function do wrong on all input bytes that are >= 0x80 (decimal 128) due to a
signed / unsigned mistake in the code. I fixe

Alex Fishman reported a curl_easy_escape() problem that was made the
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.

show more ...


# a6315359 26-Sep-2007 Daniel Stenberg

Max Katsev reported that when doing a libcurl FTP request with
CURLOPT_NOBODY enabled but not CURLOPT_HEADER, libcurl wouldn't do TYPE
before it does SIZE which makes it less useful. I walked

Max Katsev reported that when doing a libcurl FTP request with
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.

show more ...


Revision tags: curl-7_17_0
# 9e88343a 11-Sep-2007 Daniel Stenberg

Daniel S (12 September 2007)
- 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 a

Daniel S (12 September 2007)
- 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.

show more ...


# 652e2cf5 13-Aug-2007 Dan Fandrich

Removed redundant dependency lines


Revision tags: curl-7_17_0-preldapfix
# 15c82193 14-Jul-2007 Daniel Stenberg

Added test case 540 and lib540.c, the 'proxyauth.c' test app posted by Shmulik
Regev on the libcurl mailing list on 10 Jul 2007, converted to a test case.


Revision tags: curl-7_16_4, curl-7_16_3
# b0a4c992 14-May-2007 Dan Fandrich

Added SFTP directory listing test case 613.


# 5187faee 30-Apr-2007 Dan Fandrich

Improved the test harness to allow running test servers on other than
the default port numbers, allowing more than one test suite to run
simultaneously on the same host.


Revision tags: curl-7_16_2
# 7bbad0b5 03-Apr-2007 Yang Tse

try not to link with unneeded libs, avoiding global LDADD


# 8c9233f6 09-Feb-2007 Yang Tse

Include both testutil.c and testutil.h, and not just testutil.c, in the
list of source files for those tests that use it. Otherwise testutil.h
might not be found by the compiler.


123456