[CMake] Is it possible to run unit tests in separate processes?
Matthew Woehlke
matthew.woehlke at kitware.com
Thu Nov 1 18:28:51 EDT 2012
On 2012-11-01 18:00, Robert Deschambault wrote:
> Hello,
>
> I have a situation where I would like to run a unit test that requires two
> separate processes. Is it possible to set this up under CTest?
AFAIK, yes, if you can write a single process that spawns and waits on
your other processes. (If you're relying on something like python or a
UNIX shell being available, you could leverage that, with a script, as
the controller process.)
Basically, anything you can coerce into 'run a single process with some
arguments, wait on it to exit, and take the exit status and/or output
parsing as the test result' can be a CTest test.
--
Matthew
More information about the CMake
mailing list