Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Revise C++ coding style using clang-format | Kitware Robot | 2016-05-16 | 1 | -59/+55 |
| | | | | | | | | | | | | | Run the `Utilities/Scripts/clang-format.bash` script to update all our C++ code to a new style defined by `.clang-format`. Use `clang-format` version 3.8. * If you reached this commit for a line in `git blame`, re-run the blame operation starting at the parent of this commit to see older history for the content. * See the parent commit for instructions to rebase a change across this style transition commit. | ||||
* | Source: Stabilize include order | Brad King | 2016-04-29 | 1 | -1/+1 |
| | | | | | Each source file has a logical first include file. Include it in an isolated block so that tools that sort includes do not move them. | ||||
* | CTest: Optionally use a secondary test timeout after matching output | Zack Galbreath | 2016-03-22 | 1 | -0/+3 |
| | | | | | | Allow a test N seconds to complete after we detect a matching line in its output. Activate this behavior with a new TIMEOUT_AFTER_MATCH test property. | ||||
* | CTest: Add options to limit output of passed and failed tests | Roman Wüger | 2015-09-18 | 1 | -0/+5 |
| | | | | | | | | | | Add ctest command-line options: --test-output-size-passed <n> --test-output-size-failed <n> to set the amount of test output to store in Test.xml as a command-line dashboard client. | ||||
* | cmCTest{Test,MemCheck}Handler: Port to cmXMLWriter | Daniel Pfeifer | 2015-05-26 | 1 | -5/+6 |
| | |||||
* | CTest: Generate NamedMeasurement elements directly into xml file | Daniel Pfeifer | 2015-05-26 | 1 | -2/+2 |
| | | | | Re-order the logic to avoid use of a temporary std::ostringstream. | ||||
* | strings: Remove cmStdString references | Ben Boeckel | 2014-03-08 | 1 | -9/+9 |
| | | | | | | | | | | | Casts from std::string -> cmStdString were high on the list of things taking up time. Avoid such implicit casts across function calls by just using std::string everywhere. The comment that the symbol name is too long is no longer relevant since modern debuggers alias the templates anyways and the size is a non-issue since the underlying methods are generated since it's inherited. | ||||
* | allow to mark a test as "Not Run" with a specific return code (#8466) | Rolf Eike Beer | 2014-01-14 | 1 | -0/+2 |
| | |||||
* | Use cmsys::[io]fstream instead of cmsys_ios::[io]fstream. | Clinton Stimpson | 2014-01-07 | 1 | -5/+5 |
| | | | | | Also use SystemTools::Fopen() instead of fopen(). This is to eventually support utf-8 filenames. | ||||
* | ctest: Add --rerun-failed option | Zack Galbreath | 2013-10-08 | 1 | -0/+15 |
| | | | | | | | | Add a new command line argument to ctest. This allows users to rerun tests that failed during the previous call to ctest. This is accomplished by analyzing the most recently modified file named "^LastTestsFailed*" in the Testing/Temporary subdirectory of the project's binary directory. | ||||
* | CTest: create one output file per memcheck (#14303) | Rolf Eike Beer | 2013-08-07 | 1 | -1/+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. | ||||
* | CTest: print failed tests in index order (#11746) | David Cole | 2011-08-03 | 1 | -2/+11 |
| | | | | | | | | This deterministic ordering makes it easier for a developer comparing the ctest output of two test runs to see what changed from run to run. Thanks to Fraser Hutchison for the patch. | ||||
* | Implement ctest_upload command | Zach Mullen | 2011-03-15 | 1 | -2/+0 |
| | |||||
* | Remove trailing whitespace | Brad King | 2011-03-11 | 1 | -2/+2 |
| | |||||
* | Test TIMEOUT property explicitly set to zero should be honored | Zach Mullen | 2011-01-03 | 1 | -0/+1 |
| | |||||
* | Added RESOURCE_LOCK test property. | Zach Mullen | 2010-03-02 | 1 | -0/+1 |
| | |||||
* | Use historical average of test times to schedule tests. | Zach Mullen | 2010-02-26 | 1 | -0/+1 |
| | |||||
* | CTest output submitted to the dashboard is now compressed by default. | Zach Mullen | 2009-12-17 | 1 | -0/+1 |
| | |||||
* | Added an option to conditionally attach files to a test submission only if ↵ | Zach Mullen | 2009-12-16 | 1 | -0/+1 |
| | | | | the test does not pass. Also some preliminary changes for test output compression. | ||||
* | Changed XML formatting of files attached to test so that each file is ↵ | Zach Mullen | 2009-12-15 | 1 | -1/+1 |
| | | | | archived and marked up individually, in order to make things easier on the CDash side. Also switched to using the NamedMeasurement tag instead of a new tag. | ||||
* | CTest-side changes to allow users to attach arbitrary files to test results ↵ | Zach Mullen | 2009-12-15 | 1 | -0/+5 |
| | | | | that will be submitted to cdash using the ATTACHED_FILES test property. | ||||
* | Unfortunately, I noticed the comment on bug 8668 too late. This changes my ↵ | Zach Mullen | 2009-12-10 | 1 | -3/+2 |
| | | | | last implementation of the exe wrapper to something which makes much more sense: a REQUIRED_FILES property on tests. | ||||
* | [0008668: CTest Dev: Missing executables shown as failed tests when using ↵ | Zach Mullen | 2009-12-10 | 1 | -1/+3 |
| | | | | MPI.] Added a wrapping option to add_test so that exes built by the project can be safely wrapped in other exes and be listed as "not run" rather than "failed" if they are not built. | ||||
* | Convert CMake to OSI-approved BSD License | Brad King | 2009-09-28 | 1 | -14/+9 |
| | | | | | | | This converts the CMake license to a pure 3-clause OSI-approved BSD License. We drop the previous license clause requiring modified versions to be plainly marked. We also update the CMake copyright to cover the full development time range. | ||||
* | BUG: Fixed segfault and bad reporting if a ctest executable could not be ↵ | Zach Mullen | 2009-09-10 | 1 | -0/+1 |
| | | | | found. Also added some batch testing code that is not yet complete. | ||||
* | ENH: Replaced the EXPENSIVE test property with a COST test property taking a ↵ | Zach Mullen | 2009-09-08 | 1 | -1/+1 |
| | | | | floating point value. Tests are now started in descending order of their cost, which defaults to 0 if none is specified. | ||||
* | ENH: Added ctest test options PROCESSORS and RUN_SERIAL. These allow ↵ | Zach Mullen | 2009-09-07 | 1 | -0/+1 |
| | | | | specification of resource allocation for given tests running with the ctest -j N option. RUN_SERIAL ensures that a given test does not run in parallel with any other test. Also forced appending of "..." to the longest test name in ctest. | ||||
* | Fixed warnings | Zach Mullen | 2009-09-03 | 1 | -0/+1 |
| | |||||
* | ENH: Added PARALLEL_LEVEL option for ctest_memcheck(). Added PROCESSORS ↵ | Zach Mullen | 2009-09-03 | 1 | -0/+2 |
| | | | | option to set_tests_properties (implementation to come). | ||||
* | Fixed ctest output where max test index is not the same width as the total ↵ | Zach Mullen | 2009-09-02 | 1 | -0/+3 |
| | | | | number of tests. Also some preliminary changes for batching ctest jobs | ||||
* | MemCheck should now work again in ctest | Zach Mullen | 2009-08-28 | 1 | -12/+1 |
| | |||||
* | Added ctest -N test. Fixed ctest working directory bug. MemCheck fix ↵ | Zach Mullen | 2009-08-28 | 1 | -1/+0 |
| | | | | coming soon... | ||||
* | Fixed ctest -N segfault issue. Further refactored ctest. Enabled failover ↵ | Zach Mullen | 2009-08-27 | 1 | -4/+1 |
| | | | | for ctest | ||||
* | ENH: refactored ctest. All testing is now parallel. If no -j option is ↵ | Zach Mullen | 2009-08-26 | 1 | -4/+2 |
| | | | | specified, defaults to a MP level of 1 (non parallel) | ||||
* | Fixed overwriting of a previous change set | Zach Mullen | 2009-08-19 | 1 | -0/+1 |
| | |||||
* | ENH: Refactored CTest test execution code into an object | Zach Mullen | 2009-08-19 | 1 | -1/+1 |
| | |||||
* | If labels are found on the tests, then print a time summary for all the ↵ | Bill Hoffman | 2009-08-18 | 1 | -0/+1 |
| | | | | tests run with each label. | ||||
* | ENH: add a CDash measured value showing the reason for passed and failed ↵ | Bill Hoffman | 2009-02-24 | 1 | -0/+1 |
| | | | | tests based on regular expressions | ||||
* | ENH: add the ability to run tests by labels | Bill Hoffman | 2009-02-10 | 1 | -0/+9 |
| | |||||
* | ENH: Put test labels in MemCheck results | Brad King | 2009-02-02 | 1 | -0/+3 |
| | | | | | | | This refactors generation of <Test> element headers and footers in cmCTestTestHandler and re-uses it in cmCTestMemCheckHandler. The change removes duplicate code and enables the new <Labels> element for MemCheck results. | ||||
* | BUG: fix for bug #8174 | Bill Hoffman | 2009-01-15 | 1 | -0/+1 |
| | |||||
* | ENH: Teach CTest to submit test property LABELS | Brad King | 2009-01-07 | 1 | -0/+1 |
| | | | | | This teaches CTest to send the test property "LABELS" in Test.xml dashboard submissions as Label elements inside a Labels element. | ||||
* | BUG: partial fix for #8056 | Bill Hoffman | 2008-12-19 | 1 | -0/+4 |
| | |||||
* | ENH: Implement feature request from issue 7885. Allow setting environment ↵ | David Cole | 2008-11-26 | 1 | -0/+1 |
| | | | | variables on a per-test basis for ctest using set_test_properties ENVIRONMENT. | ||||
* | COMP: fix a few more warnings | Bill Hoffman | 2008-07-06 | 1 | -1/+1 |
| | |||||
* | ENH: add initial ctest -j feature | Bill Hoffman | 2008-07-03 | 1 | -3/+32 |
| | |||||
* | ENH: enhancements for cdash, include system information and better time entries | Bill Hoffman | 2008-01-30 | 1 | -0/+2 |
| | |||||
* | ENH: fix line length issues | Bill Hoffman | 2007-09-24 | 1 | -2/+4 |
| | |||||
* | ENH: fix failing test when valgrind is on | Bill Hoffman | 2007-09-19 | 1 | -2/+2 |
| | |||||
* | ENH: add support for bounds checker | Bill Hoffman | 2007-07-24 | 1 | -8/+9 |
| |