[Cmake] Re: [vtkusers] ctest of vtk tests

Brad King brad.king at kitware.com
Wed, 19 May 2004 08:47:42 -0400


William A. Hoffman wrote:
> This is not an option for ctest.
> You could do this:
> 
> ctest -R TestScalarBarWidget -V
> 
> Then look at the output and repeat the command line, and
> add the -I.  The -I goes with the testdriver program
> that is build as part of VTK, and is not an option to ctest.

You can also run

ctest -R TestScalarBarWidget -V -N

to display the test's command line without running it.  Then 
cut-and-paste the command line and add the -I.

-Brad