Notes |
|
(0031946)
|
Clinton Stimpson
|
2012-12-27 12:18
|
|
That is already possible with a ctest script.
In the script, just don't call ctest_submit(). |
|
|
(0031947)
|
Keith Gardner
|
2012-12-27 12:25
|
|
Would it be possible to add it without using a ctest script? I define all of my tests within my CMake files. |
|
|
(0031948)
|
Clinton Stimpson
|
2012-12-27 13:07
|
|
Its also possible to do without a script. Its just that I recommend a script for more advanced usage. And, of course, the tests are still defined in the CMake files.
You can use this command:
ctest -D ExperimentalStart -D ExperimentalUpdate -D ExperimentalConfigure -D ExperimentalBuild -D ExperimentalTest
In case you didn't know, that is essentially equivalent to a script that contains
ctest_start(Experimental)
ctest_update()
ctest_configure()
ctest_build()
ctest_test()
and is executed by
ctest -S my.ctest
I think you already have the capability you need. |
|
|
(0031950)
|
Keith Gardner
|
2012-12-27 13:26
|
|
Thanks. I didn't understand the capabilities that the command line arguments provided. Sorry for the noise. |
|