Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Convert CMake to OSI-approved BSD License | Brad King | 2009-09-28 | 71 | -994/+639 |
| | | | | | | | 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. | ||||
* | Fixed uninitialized memory issue in ctest show-only mode | Zach Mullen | 2009-09-25 | 1 | -0/+1 |
| | |||||
* | Output a message in ctest when each test is started | Zach Mullen | 2009-09-24 | 1 | -0/+3 |
| | |||||
* | Reformat ctest -N output. Removed the "Start processing tests" message as well. | Zach Mullen | 2009-09-24 | 1 | -6/+9 |
| | |||||
* | Tests which are not run should be added to the failed test list. | Zach Mullen | 2009-09-23 | 1 | -0/+1 |
| | |||||
* | More SLURM experimentation (ctest batch mode) | Zach Mullen | 2009-09-21 | 1 | -5/+17 |
| | |||||
* | Fixed a slurm batch argument identifier. | Zach Mullen | 2009-09-21 | 1 | -1/+1 |
| | |||||
* | Need to quote args when generating batch scripts from ctest | Zach Mullen | 2009-09-21 | 2 | -2/+36 |
| | |||||
* | Re-enabled failing tests; fixed ctest_build output to be consistent in the ↵ | Zach Mullen | 2009-09-21 | 1 | -5/+6 |
| | | | | error condition across different make programs so that these tests would pass. | ||||
* | Fix uninitialized errors. | Bill Hoffman | 2009-09-16 | 1 | -0/+7 |
| | |||||
* | Removed fork-and-continue option from ctest generated batch script entries | Zach Mullen | 2009-09-14 | 2 | -2/+1 |
| | |||||
* | Avoid shadowing std::vector member | Brad King | 2009-09-12 | 1 | -3/+3 |
| | | | | | | The cmProcess::Buffer class derives from std::vector. We were using local variable 'data' in the GetLine method but this name shadowed a member of vector with GNU. This renames it to 'text'. | ||||
* | Fix for bug#9442, ctest crash if CTEST_SOURCE_DIRECTORY was not set. | Bill Hoffman | 2009-09-11 | 1 | -1/+1 |
| | |||||
* | Fix new CTest output handling for no newline | Brad King | 2009-09-11 | 1 | -0/+1 |
| | | | | | | When we clear the buffer for an output pipe after returning the last partial line (without a newline) we need to set the partial line range to empty. Otherwise the buffer object is left in an inconsistent state. | ||||
* | Add label summary times to ctest default output. Also, remove parallel time ↵ | Bill Hoffman | 2009-09-11 | 1 | -20/+32 |
| | | | | output. Add flag to disable label summary. | ||||
* | Rewrite CTest child output handling | Brad King | 2009-09-11 | 5 | -203/+132 |
| | | | | | | | | | | | | | | This commit fixes cmCTestRunTest and cmProcess to more efficiently handle child output. We now use the buffer for each child output pipe to hold at most a partial line plus one new block of data at a time. All complete lines are scanned in-place, and then only the partial line at the end of the buffer is moved back to the beginning before appending new data. We also simplify the cmProcess interface by making GetNextOutputLine the only method that needs to be called while the process is running. This simplifies cmCTestRunTest so that CheckOutput can be called until it returns false when the process is done. | ||||
* | Initialize cmCTestRunTest instances robustly | Brad King | 2009-09-11 | 3 | -18/+6 |
| | | | | | | All instances of this class need a cmCTestTestHandler, so we now require one to construct it. The instance also provides the cmCTest instance too. | ||||
* | Add parentheses around '&&' between '||' for gcc | Brad King | 2009-09-11 | 1 | -4/+4 |
| | | | | | | | The GNU compiler warns about possible operator precedence mistakes and asks for explicit parentheses (-Wparentheses). We add the parentheses to silence the warning. This also fixes one real logic error in the find_package() implementation by correcting expression evaluation order. | ||||
* | Added some ctest batch capabilities | Zach Mullen | 2009-09-10 | 2 | -0/+148 |
| | |||||
* | BUG: Fixed segfault and bad reporting if a ctest executable could not be ↵ | Zach Mullen | 2009-09-10 | 5 | -48/+37 |
| | | | | found. Also added some batch testing code that is not yet complete. | ||||
* | ENH: ctest now writes time cost data to a file after a test set is run, and ↵ | Zach Mullen | 2009-09-08 | 3 | -9/+61 |
| | | | | uses these time costs to schedule the processes the next time ctest is run in that build tree. | ||||
* | BUG: Fixed extraneous newlines from ctest process output | Zach Mullen | 2009-09-08 | 2 | -21/+26 |
| | |||||
* | ENH: Replaced the EXPENSIVE test property with a COST test property taking a ↵ | Zach Mullen | 2009-09-08 | 4 | -64/+72 |
| | | | | floating point value. Tests are now started in descending order of their cost, which defaults to 0 if none is specified. | ||||
* | BUG: Fixed issue where ctest would hang if a process terminated with output ↵ | Zach Mullen | 2009-09-08 | 3 | -12/+39 |
| | | | | in its buffers but no newline | ||||
* | Fixed warning | Zach Mullen | 2009-09-08 | 1 | -1/+1 |
| | |||||
* | ENH: Added ctest test options PROCESSORS and RUN_SERIAL. These allow ↵ | Zach Mullen | 2009-09-07 | 5 | -7/+36 |
| | | | | 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. | ||||
* | Fix memory and process leak in ctest_run_script. | Bill Hoffman | 2009-09-04 | 1 | -1/+1 |
| | |||||
* | Increase curl submit timeout. A submit will timeout if there are 120 seconds ↵ | David Cole | 2009-09-04 | 1 | -7/+11 |
| | | | | of very little activity. 30 seconds was too short. | ||||
* | Fixed ctest output processing. Should now display output as it occurs, as ↵ | Zach Mullen | 2009-09-04 | 3 | -31/+46 |
| | | | | well as be able to consume multiple lines if they exist within the timeout. | ||||
* | Change run_ctest_script in ctest to not stop processing when there is an ↵ | Bill Hoffman | 2009-09-04 | 4 | -8/+43 |
| | | | | error in the script being run. Also, add a RETURN_VALUE option so that you can find out if the script failed | ||||
* | Fixed output as-it-happens issue. Now displays output as it receives each ↵ | Zach Mullen | 2009-09-04 | 1 | -0/+4 |
| | | | | newline. | ||||
* | Added the test property EXPENSIVE, which denotes that the given test(s) ↵ | Zach Mullen | 2009-09-04 | 4 | -15/+43 |
| | | | | should be started prior to tests that are not marked as such. Also fixed test dependencies, and a few uninitialized variables in cmProcess. | ||||
* | Fixed 2 unused variable warnings | Zach Mullen | 2009-09-03 | 1 | -3/+1 |
| | |||||
* | Allowed tests to pull more than one line of output in their quantum. Fixed ↵ | Zach Mullen | 2009-09-03 | 5 | -80/+91 |
| | | | | uninitialized variables in the case that the test process could not start. | ||||
* | Fixed warnings | Zach Mullen | 2009-09-03 | 4 | -2/+8 |
| | |||||
* | ENH: Added PARALLEL_LEVEL option for ctest_memcheck(). Added PROCESSORS ↵ | Zach Mullen | 2009-09-03 | 5 | -6/+22 |
| | | | | option to set_tests_properties (implementation to come). | ||||
* | STYLE: line length | Zach Mullen | 2009-09-02 | 1 | -2/+5 |
| | |||||
* | ENH: Added PARALLEL_LEVEL option to ctest_test() command. | Zach Mullen | 2009-09-02 | 3 | -3/+16 |
| | |||||
* | Fixed ctest output where max test index is not the same width as the total ↵ | Zach Mullen | 2009-09-02 | 5 | -17/+55 |
| | | | | number of tests. Also some preliminary changes for batching ctest jobs | ||||
* | Add curl timeout options to the SubmitUsingHTTP method. They were only in ↵ | David Cole | 2009-09-01 | 1 | -2/+7 |
| | | | | the SubmitUsingFTP method. | ||||
* | ENH: Improved test reporting output | Zach Mullen | 2009-09-01 | 1 | -8/+14 |
| | |||||
* | Fixed ctest_memcheck docs (http://www.cmake.org/Bug/view.php?id=9242) | Zach Mullen | 2009-08-31 | 1 | -4/+14 |
| | |||||
* | Fixed Dart time recording for ctest | Zach Mullen | 2009-08-31 | 1 | -0/+6 |
| | |||||
* | Fixed conversion warning on 64 bit machines | Zach Mullen | 2009-08-31 | 4 | -320/+6 |
| | |||||
* | Fixed line length issue | Zach Mullen | 2009-08-30 | 1 | -1/+2 |
| | |||||
* | MemCheck should now work again in ctest | Zach Mullen | 2009-08-28 | 7 | -65/+67 |
| | |||||
* | Replaced std::stringstream with cmOStringStream | Zach Mullen | 2009-08-28 | 1 | -1/+1 |
| | |||||
* | Added ctest -N test. Fixed ctest working directory bug. MemCheck fix ↵ | Zach Mullen | 2009-08-28 | 7 | -153/+114 |
| | | | | coming soon... | ||||
* | Fixed ctest -N segfault issue. Further refactored ctest. Enabled failover ↵ | Zach Mullen | 2009-08-27 | 7 | -396/+235 |
| | | | | for ctest | ||||
* | ENH: refactored ctest. All testing is now parallel. If no -j option is ↵ | Zach Mullen | 2009-08-26 | 6 | -504/+322 |
| | | | | specified, defaults to a MP level of 1 (non parallel) |