aboutsummaryrefslogtreecommitdiff
path: root/tests/libtest
AgeCommit message (Collapse)Author
2005-01-27Use the same work-around for the memdebug stuff as in the command line client,Daniel Stenberg
to allow the contents of the env var decide the file name.
2004-12-14Harshal Pradhan fixed changing username/password on a persitent HTTPDaniel Stenberg
connection.
2004-12-01Use "HAVE_SYS_TYPES_H".Gisle Vanem
2004-12-01make the "check" actually open all those file desciptors as well to make sureDaniel Stenberg
it works, as it has proved to not work in some cases (like on Tor Arntsen's AIX 5100-06 xlc 5.0 --disable-shared runs).
2004-11-28add more info to the stderr outputDaniel Stenberg
2004-11-23introducing the client/precheck concept to allow test 518 to *only* run whenDaniel Stenberg
it actually can run and test the FD_SETSIZE stuff it is meant to test
2004-11-22David Phillips fix for test 518 and my extension to make it not run onDaniel Stenberg
systems that can't run it fine.
2004-11-19ifdef for portable "/dev/null".Gisle Vanem
2004-11-19David Phillips' FD_SETSIZE fixDaniel Stenberg
2004-11-15added test case 517: 22 tests of the curl_getdate() functionDaniel Stenberg
2004-11-11Fix behaviour when passing NULL to CURLOPT_POSTFIELDS and CURLOPT_HTTPPOST.Daniel Stenberg
2004-10-03removed trailing whitespaceDaniel Stenberg
2004-09-22Dan Fandrich's fix to use 127.0.0.1 instead of localhost to not depend onDaniel Stenberg
it resolving nicely
2004-09-08Now the test servers and test cases can run on a custom port number. There'sDaniel Stenberg
no fixed port numbers in use anymore. Starting now, the default ports the servers use are 8990 - 8993. There's no option to modify these yet, but changing the $base option in the top of the runtests.pl script.
2004-07-14An Andres Garcia fix: add a typecast to make it work betterDaniel Stenberg
2004-06-30NOBODY set TRUE after a POST makes a good HEAD nowDaniel Stenberg
2004-06-21added test case 513Daniel Stenberg
2004-05-19just code formatting and killed whitespaceDaniel Stenberg
2004-05-17modified to not leak memory if a libcurl function returns failure, for betterDaniel Stenberg
memory leak detection
2004-05-17make it not leak memory when it returns prematurelyDaniel Stenberg
2004-05-14clean up properly on failure to enable easier libcurl leak detectionDaniel Stenberg
2004-05-14enable memory debugging the same way the curl command line tool already doesDaniel Stenberg
2004-05-06simplied the creation of new urlsDaniel Stenberg
2004-05-06printf %s with plain 'char *', not unsigned ones to silence icc's pickyDaniel Stenberg
warnings
2004-04-29new test case for a simple curl_easy_duphandle() testDaniel Stenberg
2004-04-27make the loop use a fixed number of attempts to prevent eternal loopsDaniel Stenberg
2004-04-14enable verbose as wellDaniel Stenberg
2004-04-14Added test case 511 in an attempt to repeat bug report #934666 "storage leakDaniel Stenberg
in ftp.c", but it shows no leaking.
2004-03-23minor edits to make picky compilers whine lessDaniel Stenberg
2004-03-12minor variable type fixDaniel Stenberg
2004-03-03removed include stuff now handled by test.hDaniel Stenberg
2004-03-03We let this file include more generic headers that many libtests need anywayDaniel Stenberg
to reduce the amount of #include stuff in each single libNNN.c file. unistd.h was added to prevent select() warnings on FreeBSD
2004-02-25typecast to int when printfing CURLcodeDaniel Stenberg
2004-02-20include sys/select.h to prevent picky compiler warnings when using select()Daniel Stenberg
without proto
2004-02-19fixed the no-ssl version to return int as wellDaniel Stenberg
2004-02-19provide protos to the functions to prevent warningsDaniel Stenberg
2004-02-19typecast the type to an int on returnDaniel Stenberg
2004-02-19return int from test()Daniel Stenberg
2004-02-19provide a test() protoDaniel Stenberg
2004-02-17ignore moreDaniel Stenberg
2004-02-13return an intDaniel Stenberg
2004-02-13return an int, not a CURLcodeDaniel Stenberg
2004-02-09return 'res' to better discover test failures and to stop compiler warningsDaniel Stenberg
about it never being used
2004-02-09Uninitialized variable set.Daniel Stenberg
2004-02-05changed the test() function to return type intDaniel Stenberg
2004-01-30added lib510.c for callback POST using chunked encodingDaniel Stenberg
2004-01-13use the *correct* header!Daniel Stenberg
2004-01-13fix the include path to point to the libcurl's source dir too for the setup.hDaniel Stenberg
inclusion
2004-01-13include setup.h from the lib dir instead to get even more private stuffDaniel Stenberg
from the libcurl build, but right now for the USE_SSLEAY define.
2004-01-12Peter Sylvester brought code that now allows a callback to modified the URLDaniel 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.