<div class="gmail_quote">On Fri, May 28, 2010 at 12:04 PM, Martin Apel <span dir="ltr"><<a href="mailto:martin.apel@simpack.de">martin.apel@simpack.de</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div bgcolor="#ffffff" text="#000000">
Hi Alok,<br>
<br>
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.</div></blockquote><div><br>Explicitly tell ctest to perform just the specific actions..<br><br> ctest -T Test -T Submit <br><br>will perform just the test and submit parts. Equivalent line within your CTest script would be something like<br>
<br><pre>SET (CTEST_COMMAND <br> "C:/Program Files/CMake/bin/ctest.exe -T Test -T Submit"<br> )<br></pre><br><br></div></div><br>