On Fri, May 28, 2010 at 12:04 PM, Martin Apel <martin.a...@simpack.de>wrote:

>  Hi Alok,
>
> the problem is not to start the testing process remotely. In my case it's
> no problem simply setting up the Windows task planner to execute some script
> every night. The problem is more, how do I tell ctest to perform its tests
> without having to perform the complete build as well.
>

Explicitly tell ctest to perform just the specific actions..

  ctest -T Test -T Submit

will perform just the test and submit parts. Equivalent line within your
CTest script would be something like

SET (CTEST_COMMAND
  "C:/Program Files/CMake/bin/ctest.exe -T Test -T Submit"
  )
_______________________________________________
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Reply via email to