summaryrefslogtreecommitdiff
path: root/tests/data/test96
Commit message (Collapse)AuthorAgeFilesLines
* free: instead of Curl_safefree()Daniel Stenberg2015-03-161-1/+1
| | | | | | | | | | | | 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.
* test96: Updated accordly for recent changesSteve Holme2014-02-281-1/+0
|
* test96: updated according to recent changesDaniel Stenberg2014-02-081-0/+3
|
* test suite: stop conversion of valid output to CRLF on WindowsMarc Hoersken2014-02-011-1/+1
| | | | | 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.
* tests: 96, 558, 1330: strip build subdirectory dependent leading pathYang Tse2013-03-161-2/+3
|
* tests: add #96 #558 and #1330Yang Tse2013-03-151-0/+43
| | | | | | 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.
* Removed, this was only used to work out what went wrong with test 91, andDaniel Stenberg2004-02-091-105/+0
| | | | we seem to have nailed that one now!
* send a connection: close in the initial reply to see if things differDaniel Stenberg2004-01-271-0/+2
|
* removed Basic in the initial response to see if it makes any differenceDaniel Stenberg2004-01-211-3/+1
| | | | in the failure frequency
* added this test, this is basicly a copy of test 91 but we return the firstDaniel Stenberg2004-01-161-0/+105
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.