Don&#39;t worry... it&#39;s not submitting results to Kitware, it&#39;s using a default value for CTEST_TRIGGER_SITE, which is old and leftover from pre-CDash days... It used to be the case that after all results were uploaded, a &quot;trigger&quot; script would run to tell the server to process the previously uploaded files. CDash processes files as they are submitted so triggers are not necessary with CDash. I actually fixed this very code in ctest earlier today to avoid trigger calls when using CDash. (See changes listed here:&nbsp;<a href="http://www.cdash.org/CDash/viewUpdate.php?buildid=263494">http://www.cdash.org/CDash/viewUpdate.php?buildid=263494</a>)<br>
<br><div>To answer your questions:</div><div>The CMake book has a Tutorial chapter in it that takes you through the steps involved in adding CTest / CDash support to your CMake based project. If you have the book, read through the Tutorial chapter... it&#39;s pretty quick. If you don&#39;t have the book, buy it. :-) &nbsp; (You can also check out the code that goes with the chapter in the CMake/Tests/Tutorial/Step1 through Step7 directories in a CMake source tree...)</div>
<div><br></div><div>Basically, you need to call ENABLE_TESTING() and INCLUDE(CTest) in your CMakeLists.txt file.</div><div><br></div><div>And yes, &quot;make test&quot; returns errors when there are test failures...</div>
<div><br></div><div><div>And you should set CTEST_UPDATE_COMMAND to the full path to the svn executable to use svn instead of cvs...</div><div><br></div><div><br></div><div>HTH,</div><div>David</div><div><br></div><div><br>
</div></div><div><div class="gmail_quote">On Tue, Feb 3, 2009 at 3:13 PM, Bill O&#39;Hara <span dir="ltr">&lt;<a href="mailto:billtohara@gmail.com">billtohara@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Hello,<br><br>I wonder if anyone can point me in the direction of a hello world project that successfully demonstrates the basic features of cmake+ctest+cdash? I&#39;m using cmake/ctest version 2.6-patch 2 and cdash 1.2.1. Or somewhere with a working tutorial I can follow along? (I&#39;m a bit confused by where to find the up to date documentation I should work from).<br>

<br>I&#39;m tasked with putting together a new build system for a commercial project but when evaluating cmake I can&#39;t seem to get the basics working even on trivial hello world projects. The comedy of errors I&#39;ve managed so far is included below - I&#39;d be extremely grateful for any hints. I&#39;m particularly worried by the testing submitting results to <a href="http://kitware.com" target="_blank">kitware.com</a> even though I specifically said we&#39;re using cdash and pointed it at my local cdash server (where some results are submitted despite other errors).<br>

<br>Thanks in advance for any hints! I have marked QUESTION below at various points if anyone can spot my problems :(<br><br>Bill<br><br><br>#<br># Start from a clean setup.<br>#<br>bill-box:/tmp&gt; ls svn<br>README.txt&nbsp; conf&nbsp; dav&nbsp; db&nbsp; format&nbsp; hooks&nbsp; locks<br>

bill-box:/tmp&gt; ls build/<br>bill-box:/tmp&gt; ls binary/<br>bill-box:/tmp&gt; ls source/<br><br><br>#<br># Checkout has a minimal test project checked out from /tmp/svn:<br># - A shared library called impl build from include/header.h and impl/impl.c<br>

# - A test called foo that invokes the function from impl and always succeeds.<br># - A test called bar that invokes the function from impl and always fails.<br>#<br>bill-box:/tmp&gt; ls checkout/<br>CMakeLists.txt&nbsp; CTestConfig.cmake&nbsp; impl&nbsp; include&nbsp; tests<br>

<br>#<br># CMakeLists.txt<br>#<br>bill-box:/tmp/checkout&gt; cat CMakeLists.txt<br>
PROJECT (HELLOWORLD)<br>
CMAKE_MINIMUM_REQUIRED(VERSION 2.6)<br>
INCLUDE_DIRECTORIES (${CMAKE_SOURCE_DIR}/include)<br>
ADD_SUBDIRECTORY (${CMAKE_SOURCE_DIR}/impl)<br>
INCLUDE (CTest)<br>
ADD_SUBDIRECTORY (${CMAKE_SOURCE_DIR}/tests)<br>
<br><br>#<br># CTestConfig.cmake<br>#<br>
bill-box:/tmp/checkout&gt; cat CTestConfig.cmake<br>
SET (CTEST_DROP_SITE_CDASH TRUE)<br>
SET (CTEST_PROJECT_NAME &quot;helloworld&quot;)<br>
SET (CTEST_NIGHTLY_START_TIME &quot;00:00:00 EST&quot;)<br>
SET (UPDATE_TYPE &quot;true&quot;)<br>
SET (CTEST_DROP_METHOD &quot;http&quot;)<br>
SET (CTEST_DROP_SITE &quot;bill-box&quot;)<br>
SET (CTEST_DROP_LOCATION &quot;/submit.php?project=helloworld&quot;)<br>
<br>
<br>#<br># And an experimental Nightly ctest script to try to upload<br># test results to CDash after checking out and building<br># the project source code. This script is not in /tmp/checkout.<br>#<br>bill-box:/tmp&gt; cat experimental.cmake<br>


SET (CTEST_DROP_SITE_CDASH TRUE)<br>
SET (CTEST_PROJECT_NAME &quot;helloworld&quot;)<br>
SET (CTEST_NIGHTLY_START_TIME &quot;00:00:00 EST&quot;)<br>
SET (UPDATE_TYPE &quot;true&quot;)<br>
SET (CTEST_DROP_METHOD &quot;http&quot;)<br>
SET (CTEST_DROP_SITE &quot;bill-box&quot;)<br>
SET (CTEST_DROP_LOCATION &quot;/submit.php?project=helloworld&quot;)<br>
SET (CTEST_SOURCE_DIRECTORY &quot;/tmp/source&quot;)<br>
SET (CTEST_BINARY_DIRECTORY &quot;/tmp/binary&quot;)<br>
SET (CTEST_START_WITH_EMPTY_BINARY_DIRECTORY TRUE)<br>
SET (CTEST_SVN_CHECKOUT &quot;svn co file:///tmp/svn \&quot;${CTEST_SOURCE_DIRECTORY}\&quot;&quot;)<br>
SET (CTEST_CMAKE_GENERATOR &quot;Unix Makefiles&quot;)<br>
SET (CTEST_CUSTOM_PRE_TEST &quot;${CTEST_SVN_CHECKOUT}&quot;)<br>
CTEST_START(Nightly)<br>
CTEST_UPDATE(SOURCE &quot;${CTEST_SOURCE_DIRECTORY}&quot;)<br>
CTEST_CONFIGURE(BUILD &quot;${CTEST_BINARY_DIRECTORY}&quot;)<br>
CTEST_BUILD(BUILD &quot;${CTEST_BINARY_DIRECTORY}&quot;)<br>
CTEST_TEST(BUILD &quot;${CTEST_BINARY_DIRECTORY}&quot;)<br>
CTEST_SUBMIT()<br>
<br><br>#<br># First, try to configure using cmake.<br>#<br>bill-box:/tmp&gt; cd build<br>bill-box:/tmp/build&gt; cmake /tmp/checkout<br>-- The C compiler identification is GNU<br>-- The CXX compiler identification is GNU<br>

-- Check for working C compiler: /usr/bin/gcc<br>-- Check for working C compiler: /usr/bin/gcc -- works<br>-- Detecting C compiler ABI info<br>-- Detecting C compiler ABI info - done<br>-- Check for working CXX compiler: /usr/bin/c++<br>

-- Check for working CXX compiler: /usr/bin/c++ -- works<br>-- Detecting CXX compiler ABI info<br>-- Detecting CXX compiler ABI info - done<br>-- Configuring done<br>-- Generating done<br>-- Build files have been written to: /tmp/build<br>

<br><br>#<br># Now, build and test.<br>#<br>bill-box:/tmp/build&gt; make all test<br>Scanning dependencies of target impl<br>[ 33%] Building C object impl/CMakeFiles/impl.dir/impl.c.o<br>Linking C shared library libimpl.so<br>

[ 33%] Built target impl<br>Scanning dependencies of target bar<br>[ 66%] Building C object tests/CMakeFiles/bar.dir/bar.c.o<br>Linking C executable bar<br>[ 66%] Built target bar<br>Scanning dependencies of target foo<br>

[100%] Building C object tests/CMakeFiles/foo.dir/foo.c.o<br>Linking C executable foo<br>[100%] Built target foo<br>Running tests...<br>Start processing tests<br>Test project /tmp/build<br>&nbsp; 1/&nbsp; 2 Testing foo&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Passed<br>

&nbsp; 2/&nbsp; 2 Testing bar&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ***Failed<br><br>50% tests passed, 1 tests failed out of 2<br><br>The following tests FAILED:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2 - bar (Failed)<br>Errors while running CTest<br>make: *** [test] Error 8<br>

<br><br># QUESTION<br>#<br># Is this Error 8 from make the expected result after some tests have failed?<br>#<br><br><br>#<br># Now try the Nightly test target.<br>#<br>bill-box:/tmp/build&gt; make Nightly<br>Scanning dependencies of target Nightly<br>

&nbsp;&nbsp; Site: bill-box<br>&nbsp;&nbsp; Build name: Linux-c++<br>Determine Nightly Start Time<br>&nbsp;&nbsp; Specified time: 00:00:00 EST<br>Create new tag: 20090203-0500 - Nightly<br>Start processing tests<br><br>#<br># QUESTION<br># Why does it think we are using CVS here?<br>

# <br><br>Updating the repository<br>&nbsp;&nbsp; Updating the repository: /tmp/checkout<br>&nbsp;&nbsp; Use CVS repository type<br>Determine Nightly Start Time<br>&nbsp;&nbsp; Specified time: 00:00:00 EST<br>&nbsp;&nbsp; Gathering version information (each . represents one updated file):<br>

&nbsp;&nbsp; Project is up-to-date<br>&nbsp;&nbsp; Update with command: &quot;/usr/bin/cvs&quot; -z3 update -d -A -P -D &quot;2009-02-03 05:00:00 UTC&quot; failed<br>Configure project<br>&nbsp;&nbsp; Each . represents 1024 bytes of output<br>&nbsp;&nbsp;&nbsp; . Size of output: 0K<br>

Build project<br>&nbsp;&nbsp; Each symbol represents 1024 bytes of output.<br>&nbsp;&nbsp; &#39;!&#39; represents an error and &#39;*&#39; a warning.<br>&nbsp;&nbsp;&nbsp; . Size of output: 0K<br>&nbsp;&nbsp; 0 Compiler errors<br>&nbsp;&nbsp; 0 Compiler warnings<br>Test project /tmp/build<br>

&nbsp; 1/&nbsp; 2 Testing foo&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Passed<br>&nbsp; 2/&nbsp; 2 Testing bar&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ***Failed<br><br>50% tests passed, 1 tests failed out of 2<br><br>The following tests FAILED:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2 - bar (Failed)<br>

<br>#<br># QUESTION<br># How do I tell it to not do Coverage?<br>#<br><br>Performing coverage<br>&nbsp;Cannot find any coverage files. Ignoring Coverage request.<br>Submit files (using http)<br>&nbsp;&nbsp; Using HTTP submit method<br>
&nbsp;&nbsp; Drop site: <a href="http://bill-box/submit.php?project=helloworld" target="_blank">http://bill-box/submit.php?project=helloworld</a><br>
&nbsp;&nbsp; Uploaded: /tmp/build/Testing/20090203-0500/Build.xml<br>&nbsp;&nbsp; Uploaded: /tmp/build/Testing/20090203-0500/Configure.xml<br>&nbsp;&nbsp; Uploaded: /tmp/build/Testing/20090203-0500/Test.xml<br>&nbsp;&nbsp; Uploaded: /tmp/build/Testing/20090203-0500/Update.xml<br>

&nbsp;&nbsp; Submission successful<br>Errors while running CTest<br>make[3]: *** [CMakeFiles/Nightly] Error 8<br>make[2]: *** [CMakeFiles/Nightly.dir/all] Error 2<br>make[1]: *** [CMakeFiles/Nightly.dir/rule] Error 2<br>make: *** [Nightly] Error 2<br>

<br>#<br># QUESTION<br># Why are we getting 3 different Errors from make?<br>#<br><br><br>#<br>#<br># Let us try that again using ctest with verbosity turned on.<br>#<br>#<br><br>bill-box:/tmp/build&gt; ctest -VV<br><br>
#<br>
# QUESTION<br># Where is this DartConfiguration coming from? We&#39;re trying<br># to use CDash.<br>#<br><br>UpdateCTestConfiguration&nbsp; from :/tmp/build/DartConfiguration.tcl<br>Parse Config file:/tmp/build/DartConfiguration.tcl<br>

Start processing tests<br>UpdateCTestConfiguration&nbsp; from :/tmp/build/DartConfiguration.tcl<br>Parse Config file:/tmp/build/DartConfiguration.tcl<br>Test project /tmp/build<br>Constructing a list of tests<br>Done constructing a list of tests<br>

Changing directory into /tmp/build/tests<br>&nbsp; 1/&nbsp; 2 Testing foo<br>Test command: /tmp/build/tests/foo foo.c<br>Test timeout computed to be: 1500<br>42<br>-- Process completed<br>&nbsp;&nbsp; Passed<br>&nbsp; 2/&nbsp; 2 Testing bar<br>Test command: /tmp/build/tests/bar bar.c<br>

Test timeout computed to be: 1500<br>42<br>-- Process completed<br>***Failed<br><br>50% tests passed, 1 tests failed out of 2<br><br>The following tests FAILED:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2 - bar (Failed)<br>Errors while running CTest<br>

<br>#<br>#<br># Try our experimental Nightly test script to check out and test the project.<br>#<br>#<br><br>bill-box:/tmp&gt; ctest -S experimental.cmake<br><br>#<br># Drat; its complaining about the source control system and trying<br>

# to build and update before running my svn checkout successfully.<br>#<br># It also fails to find my tests.<br>#<br><br>Cannot find CVSCommand, SVNCommand, or UpdateCommand key in the DartConfiguration.tcl<br>Error(s) when updating the project<br>

Error(s) when building project<br>A&nbsp; /tmp/source/impl<br>A&nbsp; /tmp/source/impl/impl.c<br>A&nbsp; /tmp/source/impl/CMakeLists.txt<br>A&nbsp; /tmp/source/tests<br>A&nbsp; /tmp/source/tests/foo.c<br>A&nbsp; /tmp/source/tests/bar.c<br>A&nbsp; /tmp/source/tests/CMakeLists.txt<br>

A&nbsp; /tmp/source/include<br>A&nbsp; /tmp/source/include/header.h<br>A&nbsp; /tmp/source/CTestConfig.cmake<br>A&nbsp; /tmp/source/experimental.cmake<br>A&nbsp; /tmp/source/CMakeLists.txt<br>Checked out revision 9.<br>No tests were found!!!<br>
<br>
#<br># QUESTION<br># Why were my tests not found?<br><br>#<br># <br># Try that again with verbosity; the previous attempt seems to have<br># helped by eventually checking out source code.<br>#<br>#<br><br>bill-box:/tmp&gt; ctest -VV -S experimental.cmake<br>

* Extra verbosity turned on<br>Reading Script: /tmp/experimental.cmake<br>SetCTestConfiguration:SourceDirectory:/tmp/source<br>SetCTestConfiguration:BuildDirectory:/tmp/binary<br>Run dashboard with model Nightly<br>&nbsp;&nbsp; Source directory: /tmp/source<br>

&nbsp;&nbsp; Build directory: /tmp/binary<br>&nbsp;&nbsp; Reading ctest configuration file: /tmp/source/CTestConfig.cmake<br>SetCTestConfigurationFromCMakeVariable:NightlyStartTime:CTEST_NIGHTLY_START_TIMESetCTestConfiguration:NightlyStartTime:00:00:00 EST<br>

&nbsp;&nbsp; Site:<br>&nbsp;&nbsp; Build name:<br>Determine Nightly Start Time<br>&nbsp;&nbsp; Specified time: 00:00:00 EST<br>&nbsp;&nbsp; Use Nightly tag: 20090203-0500<br>SetCTestConfiguration:SourceDirectory:/tmp/source<br>SetCTestConfiguration:BuildDirectory:/tmp/binary<br>

SetCTestConfiguration:SourceDirectory:/tmp/source<br>Updating the repository<br>&nbsp;&nbsp; Updating the repository: /tmp/source<br>Cannot find CVSCommand, SVNCommand, or UpdateCommand key in the DartConfiguration.tcl<br>SetCTestConfiguration:BuildDirectory:/tmp/binary<br>

SetCTestConfiguration:SourceDirectory:/tmp/source<br>SetCTestConfiguration:ConfigureCommand:&quot;/opt/cmake-2.6.2/bin/cmake&quot; &quot;-GUnix Makefiles&quot; &quot;/tmp/source&quot;<br>SetCTestConfiguration:BuildDirectory:/tmp/binary<br>

SetCTestConfiguration:SourceDirectory:/tmp/source<br>Configure project<br>Configure with command: &quot;/opt/cmake-2.6.2/bin/cmake&quot; &quot;-GUnix Makefiles&quot; &quot;/tmp/source&quot;<br>Run command: &quot;/opt/cmake-2.6.2/bin/cmake&quot; &quot;-GUnix Makefiles&quot; &quot;/tmp/source&quot;<br>

&nbsp;&nbsp; Each . represents 1024 bytes of output<br>&nbsp;&nbsp;&nbsp; .-- Configuring done<br>-- Generating done<br>-- Build files have been written to: /tmp/binary<br>&nbsp;Size of output: 0K<br>Command exited with the value: 0<br>SetMakeCommand:/usr/bin/gmake -i<br>

SetCTestConfiguration:MakeCommand:/usr/bin/gmake -i<br>SetCTestConfiguration:BuildDirectory:/tmp/binary<br>SetCTestConfiguration:SourceDirectory:/tmp/source<br>Build project<br>MakeCommand:/usr/bin/gmake -i<br>Run command: &quot;/usr/bin/gmake&quot; &quot;-i&quot;<br>

&nbsp;&nbsp; Each symbol represents 1024 bytes of output.<br>&nbsp;&nbsp; &#39;!&#39; represents an error and &#39;*&#39; a warning.<br>&nbsp;&nbsp;&nbsp; .[ 33%] Built target impl<br>[ 66%] Built target bar<br>[100%] Built target foo<br>&nbsp;Size of output: 0K<br>

Command exited with the value: 0<br>&nbsp;&nbsp; 0 Compiler errors<br>&nbsp;&nbsp; 0 Compiler warnings<br>SetCTestConfiguration:BuildDirectory:/tmp/binary<br>SetCTestConfiguration:SourceDirectory:/tmp/source<br>Test project /tmp/binary<br>Run command: svn co file:///tmp/svn &quot;/tmp/source&quot;<br>

Checked out revision 9.<br>Constructing a list of tests<br>Changing directory into /tmp/binary/tests<br>&nbsp; 1/&nbsp; 2 Testing foo<br>Test command: /tmp/binary/tests/foo foo.c<br>Test timeout computed to be: 600<br>42<br>-- Process completed<br>

&nbsp;&nbsp; Passed<br>&nbsp; 2/&nbsp; 2 Testing bar<br>Test command: /tmp/binary/tests/bar bar.c<br>Test timeout computed to be: 600<br>42<br>-- Process completed<br>***Failed<br><br>50% tests passed, 1 tests failed out of 2<br><br>The following tests FAILED:<br>

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2 - bar (Failed)<br>* Use default trigger site: <a href="http://public.kitware.com/cgi-bin/Submit-Random-TestingResults.cgi" target="_blank">http://public.kitware.com/cgi-bin/Submit-Random-TestingResults.cgi</a><br>
SetCTestConfiguration:DropMethod:http<br>
SetCTestConfiguration:DropSite:bill-box<br>SetCTestConfiguration:DropLocation:/submit.php?project=helloworld<br>SetCTestConfiguration:TriggerSite:<a href="http://public.kitware.com/cgi-bin/Submit-Random-TestingResults.cgi" target="_blank">http://public.kitware.com/cgi-bin/Submit-Random-TestingResults.cgi</a><br>

SetCTestConfiguration:BuildDirectory:/tmp/binary<br>SetCTestConfiguration:SourceDirectory:/tmp/source<br>Submit files (using http)<br>&nbsp;&nbsp; Using HTTP submit method<br>&nbsp;&nbsp; Drop site: <a href="http://bill-box/submit.php?project=helloworld" target="_blank">http://bill-box/submit.php?project=helloworld</a><br>

&nbsp;&nbsp; Upload file: /tmp/binary/Testing/20090203-0500/Build.xml to <a href="http://bill-box/submit.php?project=helloworld&amp;FileName=______20090203-0500-Nightly___XML___Build.xml" target="_blank">http://bill-box/submit.php?project=helloworld&amp;FileName=______20090203-0500-Nightly___XML___Build.xml</a> Size: 909<br>

&nbsp;&nbsp; Uploaded: /tmp/binary/Testing/20090203-0500/Build.xml<br>&nbsp;&nbsp; Upload file: /tmp/binary/Testing/20090203-0500/Configure.xml to <a href="http://bill-box/submit.php?project=helloworld&amp;FileName=______20090203-0500-Nightly___XML___Configure.xml" target="_blank">http://bill-box/submit.php?project=helloworld&amp;FileName=______20090203-0500-Nightly___XML___Configure.xml</a> Size: 1066<br>

&nbsp;&nbsp; Uploaded: /tmp/binary/Testing/20090203-0500/Configure.xml<br>&nbsp;&nbsp; Upload file: /tmp/binary/Testing/20090203-0500/Test.xml to <a href="http://bill-box/submit.php?project=helloworld&amp;FileName=______20090203-0500-Nightly___XML___Test.xml" target="_blank">http://bill-box/submit.php?project=helloworld&amp;FileName=______20090203-0500-Nightly___XML___Test.xml</a> Size: 2272<br>

&nbsp;&nbsp; Uploaded: /tmp/binary/Testing/20090203-0500/Test.xml<br>#<br># QUESTION<br># What the...?<br>#<br># Why is it submitting results to <a href="http://kitware.com" target="_blank">kitware.com</a>?!<br>#<br>#<br>#<br>&nbsp;&nbsp; Using HTTP trigger method<br>

&nbsp;&nbsp; Trigger site: <a href="http://public.kitware.com/cgi-bin/Submit-Random-TestingResults.cgi" target="_blank">http://public.kitware.com/cgi-bin/Submit-Random-TestingResults.cgi</a><br>&nbsp;&nbsp; Trigger url: <a href="http://public.kitware.com/cgi-bin/Submit-Random-TestingResults.cgi?xmlfile=______20090203-0500-Nightly___XML___Build.xml" target="_blank">http://public.kitware.com/cgi-bin/Submit-Random-TestingResults.cgi?xmlfile=______20090203-0500-Nightly___XML___Build.xml</a><br>

<br>&nbsp;&nbsp; Trigger url: <a href="http://public.kitware.com/cgi-bin/Submit-Random-TestingResults.cgi?xmlfile=______20090203-0500-Nightly___XML___Configure.xml" target="_blank">http://public.kitware.com/cgi-bin/Submit-Random-TestingResults.cgi?xmlfile=______20090203-0500-Nightly___XML___Configure.xml</a><br>

<br>&nbsp;&nbsp; Trigger url: <a href="http://public.kitware.com/cgi-bin/Submit-Random-TestingResults.cgi?xmlfile=______20090203-0500-Nightly___XML___Test.xml" target="_blank">http://public.kitware.com/cgi-bin/Submit-Random-TestingResults.cgi?xmlfile=______20090203-0500-Nightly___XML___Test.xml</a><br>

<br>&nbsp;&nbsp; Dart server triggered...<br>&nbsp;&nbsp; Submission successful<br>bill-box:/tmp&gt;<br><br><br><br>
<br>_______________________________________________<br>
CMake mailing list<br>
<a href="mailto:CMake@cmake.org">CMake@cmake.org</a><br>
<a href="http://www.cmake.org/mailman/listinfo/cmake" target="_blank">http://www.cmake.org/mailman/listinfo/cmake</a><br></blockquote></div><br></div>