Re: [CMake] Merging CTest results

2011-05-17 Thread Neil Chittenden
David On Thu, May 12, 2011 at 12:47 PM, Neil Chittenden mailto:neilchitten...@quintessa.org>> wrote: Hi Background: I've run a set of tests using: ctest -D ExperimentalTest (i.e. delaying the CDash submit) These tests take a long time to complete. No

[CMake] Merging CTest results

2011-05-12 Thread Neil Chittenden
Hi Background: I've run a set of tests using: ctest -D ExperimentalTest (i.e. delaying the CDash submit) These tests take a long time to complete. Now I notice one of the tests failed because I forgot to update it after a change to my program. I can re-run that particular test using someth

Re: [CMake] CTest dependencies on tests

2011-05-05 Thread Neil Chittenden
On 05/05/11 16:46, David Cole wrote: On Thu, May 5, 2011 at 11:10 AM, Neil Chittenden mailto:neilchitten...@quintessa.org>> wrote: Hi Using CTest, it is possible to set a dependency on another test using: add_test(test1 test1.sh this is test 1) add_test(test2 te

[CMake] CTest dependencies on tests

2011-05-05 Thread Neil Chittenden
Hi Using CTest, it is possible to set a dependency on another test using: add_test(test1 test1.sh this is test 1) add_test(test2 test2.sh this is test 2) set_tests_properties(test1 PROPERTIES DEPENDS test2) Is it possible to: a) only run a test (test1 in my example) if the test it depends