Hi Bill,
thanks for quick reply,
but it did not explain, why it is not possible to run Continuous builds "per partes".
To be able to test our project continuously, I need to call make install, because a binary and some other runtime files must be copied to more than one directory. During the test multiple instances of binary are called from different directories. That's why I need to properly install project using 'install' target.
So 'ctest -D Continuous' works as it should, but I'm not able to run tests. Maybe if 'install' target could be made during making 'all' target, then 'ctest -D Continuous' would do the work I need.

Is a bug that
'ctest -D Continuous'
behaves differently  than
'ctest -D ContinuousStart && ctest -D ContinuousUpdate && ctest -D ContinuousConfigure && ctest -D ContinuousBuild && ctest -D ContinuousSubmit'
?

Petr

Bill Lorensen wrote:
There is no need to do a "make install"
 
ctest -D Continuous
 
updates, configures, builds and runs the tests.
 
Here is the ctest script that I use for continuous builds under linux:
 
 
Look in "your binary tree"/Testing/Temporary/ctest.log to see what's happening.
 
Bill

 
On 7/24/07, Petr Smrčka - plain <[EMAIL PROTECTED]> wrote:
Hello to everyone, 
    
I would like to run Continous tests, but before running CountinousTest stage, 
I need to call make install. So I made ctest script, where I set CTEST_COMMAND:
# which ctest command to use for running the dashboard

SET (CTEST_COMMAND
      "/usr/bin/ctest -D ${MODEL}Start"
      "/usr/bin/ctest -D ${MODEL}Update"
      "/usr/bin/ctest -D ${MODEL}Configure"
      "/usr/bin/ctest -D ${MODEL}Build"
      "make install"
      "/usr/bin/ctest -D ${MODEL}Test"
      "/usr/bin/ctest -D ${MODEL}Coverage"
      "/usr/bin/ctest -A \"${CTEST_NOTES_FILES}\" -D ${MODEL}Submit"
    )
But no results are submitted even if there were updates. If I run just 'ctest -D Continuous' (without running tests), results are normally submitted to Dart. 
Do you have any idea, what am I doing wrong? 
   
Thanks for any tip
-- Petr Smrčka <smrcka at 1sig dot cz> První Signální, a.s. Czech Republic

_______________________________________________
CMake mailing list
[email protected]
http://www.cmake.org/mailman/listinfo/cmake


-- 
Petr Smrčka <smrcka at 1sig dot cz>
První Signální, a.s.
Czech Republic



_______________________________________________
CMake mailing list
[email protected]
http://www.cmake.org/mailman/listinfo/cmake

Reply via email to