Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-09-23 | whitespace fixes | Viktor Szakats | |
- replace tabs with spaces where possible - remove line ending spaces - remove double/triple newlines at EOF - fix a non-UTF-8 character - cleanup a few indentations/line continuations in manual examples Closes https://github.com/curl/curl/pull/3037 | |||
2017-05-01 | tests: declare TU-local variables static | Marcel Raad | |
This fixes missing-variable-declarations warnings when building with clang. | |||
2017-03-26 | spelling fixes | klemens | |
Closes #1356 | |||
2016-12-14 | checksrc: warn for assignments within if() expressions | Daniel Stenberg | |
... they're already frowned upon in our source code style guide, this now enforces the rule harder. | |||
2016-04-03 | tests/libtest: follow our code style guidelines better | Daniel Stenberg | |
... checksrc of all test code is pending. | |||
2016-02-03 | URLs: change all http:// URLs to https:// | Daniel Stenberg | |
2013-03-13 | test509: libcurl initialization with memory callbacks and actual usage | Yang Tse | |
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-01-29 | add verbose output to test 509 for easier debugging | Daniel Stenberg | |
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-03-16 | openssl/bio.h doesn't exist when we build with yassl so avoid trying | Daniel Stenberg | |
2007-03-10 | change max allowed time for this test to complete to 90 seconds | Yang Tse | |
2007-02-19 | log a message, stating the need of openssl to run this test | Yang Tse | |
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 | Some compilers lacks <sys/time.h>. Include "timeval.h" to simplify the #ifdefs. | Gisle Vanem | |
2006-10-29 | Compiler warning fix | Yang Tse | |
2006-10-25 | Add project notice and file Id | Yang Tse | |
2006-10-25 | Use curl_global_init() and curl_global_cleanup(). | Yang Tse | |
Improve cleanup in case of initialization failure. | |||
2006-10-20 | Oops! Actually set the limit to 30 seconds. | Yang Tse | |
2006-10-20 | Decrease the posibility of aborting a test which actually is not | Yang Tse | |
stale by replacing loop counters with timeouts. In this way the main loop of the test will be allowed to run up to 30 seconds on any platform before aborting it. | |||
2006-10-19 | When aborting, show loop counter values when more than one counter exists. | Yang Tse | |
2006-10-19 | Abort test if it seems that it would have run forever. This is just to prevent | Yang Tse | |
test hanging and actually is an indication that there's a condition that is not being properly handled at some point in the library. Loop counter limits might need to be further increased on false positives. | |||
2006-09-10 | Added select_test() function to allow selecting on no sockets on | Gisle Vanem | |
Winsock. | |||
2004-09-22 | Dan Fandrich's fix to use 127.0.0.1 instead of localhost to not depend on | Daniel Stenberg | |
it resolving nicely | |||
2004-09-08 | Now the test servers and test cases can run on a custom port number. There's | Daniel 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-05-19 | just code formatting and killed whitespace | Daniel Stenberg | |
2004-05-17 | make it not leak memory when it returns prematurely | Daniel Stenberg | |
2004-05-06 | printf %s with plain 'char *', not unsigned ones to silence icc's picky | Daniel Stenberg | |
warnings | |||
2004-03-03 | removed include stuff now handled by test.h | Daniel Stenberg | |
2004-02-20 | include sys/select.h to prevent picky compiler warnings when using select() | Daniel Stenberg | |
without proto | |||
2004-02-19 | fixed the no-ssl version to return int as well | Daniel Stenberg | |
2004-02-05 | changed the test() function to return type int | Daniel Stenberg | |
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. |