aboutsummaryrefslogtreecommitdiff
path: root/tests/data/test96
AgeCommit message (Collapse)Author
2015-03-16free: instead of Curl_safefree()Daniel Stenberg
Since we just started make use of free(NULL) in order to simplify code, this change takes it a step further and: - converts lots of Curl_safefree() calls to good old free() - makes Curl_safefree() not check the pointer before free() The (new) rule of thumb is: if you really want a function call that frees a pointer and then assigns it to NULL, then use Curl_safefree(). But we will prefer just using free() from now on.
2014-02-28test96: Updated accordly for recent changesSteve Holme
2014-02-08test96: updated according to recent changesDaniel Stenberg
2014-02-01test suite: stop conversion of valid output to CRLF on WindowsMarc Hoersken
Since the output isn't actually being written in text-mode and it was rather used as a workaround, disable text-mode for these tests.
2013-03-16tests: 96, 558, 1330: strip build subdirectory dependent leading pathYang Tse
2013-03-15tests: add #96 #558 and #1330Yang Tse
These verfy that the 'memory tracking' subsystem is actually doing its job when using curl tool (#96), a test in libtest (#558) and also a unit test (#1330), in order to prevent regressions in this functionallity.
2004-02-09Removed, this was only used to work out what went wrong with test 91, andDaniel Stenberg
we seem to have nailed that one now!
2004-01-27send a connection: close in the initial reply to see if things differDaniel Stenberg
2004-01-21removed Basic in the initial response to see if it makes any differenceDaniel Stenberg
in the failure frequency
2004-01-16added this test, this is basicly a copy of test 91 but we return the firstDaniel Stenberg
response with a size 5 instead of size 0, to see if this has an impact on the failure frequency - test 91 still fails occationally.