<br><br><div class="gmail_quote">On Tue, Nov 3, 2009 at 8:40 PM, Alex H <span dir="ltr">&lt;<a href="mailto:aditya15417@hotmail.com">aditya15417@hotmail.com</a>&gt;</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>
I have several executables that I want to be able to run using ctest, how can I do this? <div><br></div><div>As far as I know I can only add one executable to one test, using the add_test.</div><div><br></div><div>Any ideas?<br>
</div></div></blockquote><div><br>You should be able to add as many executables as you want and run as many tests as you want on each one.<br><br>E.g.<br><br>enable_testing()<br>add_executable(foo foo.cc)<br>add_test(footest foo)<br>
<br>add_executable(bar bar.cc)<br>add_test(bartest bar)<br>add_test(extra_bartest bar -extra)<br><br>See also the documentation for add_executable() and add_test()<br><a href="http://www.cmake.org/cmake/help/cmake2.6docs.html#command:add_executable">http://www.cmake.org/cmake/help/cmake2.6docs.html#command:add_executable</a><br>
<a href="http://www.cmake.org/cmake/help/cmake2.6docs.html#command:add_test">http://www.cmake.org/cmake/help/cmake2.6docs.html#command:add_test</a><br> <br></div></div><br>-- <br>Philip Lowman<br>