summaryrefslogtreecommitdiff
path: root/tests/data/test1330
Commit message (Collapse)AuthorAgeFilesLines
* tests: Automatically deduce the tool name from the test case for unit testsSteve Holme2020-02-271-6/+0
| | | | | | | | | | | | It is still possible to override the executable to run during the test, using the <tool> tag, but this patch removes the requirement that the tag must be present for unit tests. It also removes the possibility of human error when existing test cases are used as the basis for new tests, as recently witnessed in 81c37124. Reviewed-by: Daniel Stenberg Closes #4976
* TrackMemory tests: always remove CR before LFMarcel Raad2020-01-061-0/+1
| | | | | | | | It was removed for output containing ' =' via `s/ =.*//`. With classic MinGW, this made lines with `free()` end with CRLF, but lines with e.g. `malloc()` end with only LF. The tests expect LF only. Closes https://github.com/curl/curl/pull/4788
* 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/+50
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.