Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-04-06 | Added tests (exes) targets, refactor a few things. | Benoit Neil | |
PS: Once again, sorry if the added files have executable perms on Linux. | |||
2009-01-21 | Call setlocale() for libtest tests to test the effects of locale-induced | Dan Fandrich | |
libc changes on libcurl. | |||
2008-11-12 | Fixed an OOM problem with test 560 | Dan Fandrich | |
2008-11-11 | Added test case 560: | Daniel Stenberg | |
This test was added after the HTTPS-using-multi-interface with OpenSSL regression of 7.19.1 to hopefully prevent this embarassing mistake from appearing again... Unfortunately the bug wasn't triggered by this test, which presumably is because the connect to a local server is too fast/different compared to the real/distant servers we saw the bug happen with. | |||
2008-11-07 | terminate with appropriate exit code | Yang Tse | |
2008-10-31 | fix OOM handling | Yang Tse | |
2008-10-30 | Use our Curl_addrinfo definition even when an addrinfo struct is available. | Yang Tse | |
Use a wrapper function to call system's getaddrinfo(). | |||
2008-10-28 | fix test # 558 and 559 CFLAGS | Yang Tse | |
2008-10-27 | test #558 tests internal hash create/destroy | Yang Tse | |
test #559 tests internal hash create/add/destroy | |||
2008-10-27 | Skip test #558 when libcurl is built with hidden symbols | Yang Tse | |
2008-10-27 | For tracing purposes log a fake call to getaddrinfo | Yang Tse | |
when allocating/building the fake Curl_addrinfo. | |||
2008-10-27 | avoid using Curl_ip2addr(), simply build up a fake Curl_addrinfo | Yang Tse | |
2008-10-26 | convert test #558 into something more interesting, attempting | Yang Tse | |
now to minimally exercise some internal hash routines. | |||
2008-10-26 | test #558 verifies loop operation using malloc() and free() | Yang Tse | |
2008-10-01 | Fixed some compiler warnings with gcc | Dan Fandrich | |
2008-09-22 | Fixed test 539 to handle an out of memory condition that shows up now | Dan Fandrich | |
that memdebug.h is included in the test programs. | |||
2008-09-21 | fix compiler warning: external declaration in primary source file | Yang Tse | |
2008-09-20 | include "memdebug.h" | Yang Tse | |
2008-09-18 | fix compiler warning: external definition with no prior declaration | Yang Tse | |
2008-09-18 | fix compiler warning: external definition with no prior declaration | Yang Tse | |
2008-09-18 | fix compiler warning: external declaration in primary source file | Yang Tse | |
2008-09-15 | Changed the test data file so it passes an XML syntax check | Dan Fandrich | |
2008-09-05 | Stefan Krause's mail to curl-library at 03 Sep 2008 made me add these two | Daniel Stenberg | |
new date strings to get tested too. | |||
2008-08-24 | Fix wrong signed int formatting string directive in test case #557. | Yang Tse | |
This error did not cause test failures on systems where sizeof(int) == sizeof(long). | |||
2008-08-21 | Test case 557 now also verifies signed and unsigned int formatting. | Yang Tse | |
2008-08-20 | Simplify condition check | Yang Tse | |
2008-08-18 | Update test case 557 | Yang Tse | |
2008-08-18 | Added test case 557 to verify libcurl's internal curl_m*printf() functions | Yang Tse | |
formatting functionality when handling signed and unsigned longs, as well as our curl_off_t data type. | |||
2008-08-12 | Handle short reads | Dan Fandrich | |
2008-08-07 | Initial support of curlbuild.h and curlrules.h which allows | Yang Tse | |
to have a curl_off_t data type no longer gated to off_t. | |||
2008-07-15 | add comment for include paths | Yang Tse | |
2008-07-11 | Fixed test 553 to pass the torture test. | Dan Fandrich | |
2008-07-10 | fallback to gettimeofday when monotonic clock is unavailable at run-time | Yang Tse | |
2008-07-08 | Fixed test 554 to pass the torture test. | Dan Fandrich | |
2008-07-07 | - Scott Barrett provided a test case for a segfault in the FTP code and the | Daniel Stenberg | |
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. | |||
2008-06-06 | - Added CURLINFO_PRIMARY_IP as a new information retrievable with | Daniel Stenberg | |
curl_easy_getinfo. It returns a pointer to a string with the most recently used IP address. Modified test case 500 to also verify this feature. The implementing of this feature was sponsored by Lenny Rachitsky at NeuStar. | |||
2008-05-22 | Made sure to pass longs in to curl_easy_setopt where necessary in the | Dan Fandrich | |
libtest code. | |||
2008-05-13 | wait for all 129 bytes | Daniel Stenberg | |
2008-05-13 | Added test case 556 that uses curl_easy_send() and curl_easy_recv() | Daniel Stenberg | |
2008-05-12 | configure script will now define HAVE_CLOCK_GETTIME_MONOTONIC symbol only | Yang Tse | |
when function clock_gettime() is available and the monotonic timer is also available. Otherwise, in some cases, librt or libposix4 could be used for linking even when finally not using the clock_gettime() function due to lack of the monotonic clock. | |||
2008-05-10 | fix syntax error: missing semicolon | Yang Tse | |
2008-05-09 | Internal time differences now use monotonic time source if available. | Yang Tse | |
This also implies the removal of the winmm.lib dependency for WIN32. | |||
2008-04-25 | tests/libtest/delay.pl no longer used. The 'delay' attribute of the | Yang Tse | |
test harness <command> subsection now provides this functionality. | |||
2008-04-18 | test 1001 needs a small delay between client part execution and test | Yang Tse | |
result file verifications to allow the test server to completely write out all files | |||
2008-04-18 | test 1001 needs a small delay between client part execution and test | Yang Tse | |
result file verifications to allow the test server to completely write out all files | |||
2008-04-17 | fix compiler warning: enumerated type mixed with another type | Yang Tse | |
2008-04-16 | Added test case 555, a variation of 547 but using multi interface instead of | Daniel Stenberg | |
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. | |||
2008-04-07 | fix compiler warning: argument is incompatible with corresponding format ↵ | Yang Tse | |
string conversion | |||
2008-03-31 | - Added CURLFORM_STREAM as a supported option to curl_formadd() to allow an | Daniel Stenberg | |
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. | |||
2008-03-28 | Made the test work on perl 5.00 | Dan Fandrich | |