Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-02-20 | add tutil_tvdiff_secs() for completeness | Yang Tse | |
2007-02-19 | fix typo | Yang Tse | |
2007-02-19 | Show libcurl's timestamp. This timestamp is only available in curlver.h | Yang Tse | |
for tarball-based tests and builds, the maketgz script inserts it when the tarball is created. For CVS-based tests and builds the timestamp we show is the current UTC build time as it is the CVS version timestamp. In this way, all builds will have a valid source code timestamp which isn't related to the moment the tests and build is performed, with the exception of CVS-based ones which have the same "date" and "timestamp" | |||
2007-02-19 | log a message, stating the need of openssl to run this test | Yang Tse | |
2007-02-19 | Oops missing var | Yang Tse | |
2007-02-19 | add debug messages for initialization failures | Yang Tse | |
2007-02-17 | Move portable error number symbolic name definitions to setup_once.h | Yang Tse | |
2007-02-17 | Replicate the configure tests that determined that timeval was available. | Yang Tse | |
2007-02-17 | getpart implicitly drags in some networking functions, so it needs to be | Dan Fandrich | |
linked to the networking libraries. | |||
2007-02-17 | Better separate the library dependencies into those required by libcurl | Dan Fandrich | |
and those required by other components to avoid forcing unneeded dependencies into the target objects. | |||
2007-02-17 | Remove C99isms | Dan Fandrich | |
2007-02-16 | add debug messages for fopen() failures | Yang Tse | |
2007-02-16 | add debug messages for fopen() failures | Yang Tse | |
2007-02-16 | use macros ERRNO, SET_ERRNO(), SOCKERRNO and SET_SOCKERRNO() for errno handling | Yang Tse | |
2007-02-16 | use macros ERRNO, SET_ERRNO(), SOCKERRNO and SET_SOCKERRNO() for errno handling | Yang Tse | |
2007-02-14 | compiler warning fix | Yang Tse | |
2007-02-14 | enhance HTTP server request input writing, | Yang Tse | |
retrying upon EINTR errors. | |||
2007-02-13 | ftp@example.com is now the new anonymous FTP password. I opted for 'ftp' on | Daniel Stenberg | |
the left side of @ to make it short(er). | |||
2007-02-12 | Rob Crittenden added support for NSS (Network Security Service) for the | Daniel Stenberg | |
SSL/TLS layer. http://www.mozilla.org/projects/security/pki/nss/ | |||
2007-02-09 | Include both testutil.c and testutil.h, and not just testutil.c, in the | Yang Tse | |
list of source files for those tests that use it. Otherwise testutil.h might not be found by the compiler. | |||
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-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-02-05 | Year 2038 has its own problems (32 bit integer overflow). | Yang Tse | |
So cookie expiration date is lowered to expire at most in 2035. | |||
2007-02-04 | Constify argument to suburl(). Remove trailing space. | Gisle Vanem | |
2007-02-02 | compiler warning fix | Yang Tse | |
2007-02-02 | fix leftover updating cookie expiration date | Yang Tse | |
2007-02-02 | reported in bug: #1566077 the former URL mentioned in the generated cookie | Yang Tse | |
jar has died and we now instead point out our own version of that | |||
2007-02-02 | fix test case 62 which was failing due to cookies expiring 1 Feb 2007 | Yang Tse | |
2007-02-02 | more fixes for the testsuite cookie expiration issue | Yang Tse | |
2007-02-02 | cookie expiration time got us with pants at our knees. | Yang Tse | |
Next time in 2038 :-) | |||
2007-01-31 | when using select() instead of poll, skip the test if the number of | Yang Tse | |
open file descriptors is greater than FD_SETSIZE minus SAFETY_MARGIN, also skip the test if any of the open file descriptors has a number greater than FD_SETSIZE minus SAFETY_MARGIN. | |||
2007-01-30 | fix temp string buffer variable name | Yang Tse | |
2007-01-30 | skip test on platforms on which we use select() instead | Yang Tse | |
of poll() and select() happens to be bound by FD_SETSIZE | |||
2007-01-29 | the same source file is re-used for multiple tests and I missed to add the | Daniel Stenberg | |
timval.c dependency on some of those | |||
2007-01-29 | Some compilers lacks <sys/time.h>. Include "timeval.h" to simplify the #ifdefs. | Gisle Vanem | |
2007-01-29 | the libtest source codes that use curlx_tv* functions MUST use the | Daniel Stenberg | |
lib/timeval.c source code since those functions are not in the API (and might not be accessible) | |||
2007-01-29 | - Michael Wallner reported that when doing a CONNECT with a custom User-Agent | Daniel Stenberg | |
header, you got _two_ User-Agent headers in the CONNECT request...! Added test case 287 to verify the fix. | |||
2007-01-28 | Compiler warning fix | Yang Tse | |
2007-01-27 | update copyright year notice | Yang Tse | |
2007-01-25 | set proper lib extension for non-configure mingw32 builds on Win32. | Gunter Knauf | |
2007-01-25 | Fixed a dangling pointer problem that prevented the http_proxy environment | Dan Fandrich | |
variable from being properly used in many cases (and caused test case 63 to fail). | |||
2007-01-23 | Ignore XML DOCTYPEs and declarations. | Dan Fandrich | |
2007-01-23 | Convert (most of) the test data files into genuine XML. A handful still | Dan Fandrich | |
are not, due mainly to the lack of support for XML character entities (e.g. & => & ). This will make it easier to validate test files using tools like xmllint, as well as edit and view them using XML tools. | |||
2007-01-18 | Make the test script tag parser a bit more robust. | Dan Fandrich | |
Check for the .exe extension on mingw32 builds. | |||
2007-01-18 | Added precheck that curl supports the 'openssl' engine in test 307. | Dan Fandrich | |
2007-01-17 | Fixed some tag typos in the test data files. | Dan Fandrich | |
2007-01-17 | Disabled test 307 for now. | Dan Fandrich | |
2007-01-16 | Added simple OpenSSL crypto engine tests. | Dan Fandrich | |
2007-01-15 | Added TFTP upload tests. | Dan Fandrich | |
2007-01-15 | Leave the TFTPD test server running after a file upload. | Dan Fandrich | |
Flush the protocol log data so it's immediately available to the test harness. |