summaryrefslogtreecommitdiffstats
path: root/Tests/CTestTestMemcheck/memtester.cxx.in
Commit message (Collapse)AuthorAgeFilesLines
* Tests: Move CTestTestMemcheck tools into Tests/CMakeLibBrad King2014-12-181-60/+0
| | | | | | The dummy memcheck tools we build for the RunCMake.CTestMemcheck tests require CMakeLib, so put them in a Tests/CMakeLib/PseudoMemcheck directory.
* Encoding: Fix a few encoding problems with ctest.Clinton Stimpson2014-07-181-1/+9
| | | | | This also fixes some test failures on Windows when the name of the build directory contains non-ascii characters.
* CTest: create one output file per memcheck (#14303)Rolf Eike Beer2013-08-071-7/+1
| | | | | | The output file used for memory checker runs must be unique for every test run in parallel, so simply make them unique for every test run. Simply use the test index to avoid collisions.
* Tests: fix build of dummy memtester on AIXRolf Eike Beer2013-05-211-1/+1
| | | | | | Both <string> and <cmSystemTools.h> include <stdio.h> one or the other way. It looks like the CMake header adds a define that will cause another part of the system header to be used, resulting in conflicting definitions.
* Tests: add a test with custom options passed to valgrindRolf Eike Beer2013-05-091-0/+6
|
* Tests: create output files for all memory checkersRolf Eike Beer2013-05-091-0/+52
The dummy memory tester implementation now understands the command line switches for all memory checkers to redirect the output to a file. This avoids triggering the error cases for BoundsChecker and Purify because the output file does not exist.