Nope. This is the right list..... (Or you may want to try the Dart mailing list if this does not answer your question...)<br><br>If you look at the source in &quot;CMake/Source/CTest/cmCTestTestHandler.cxx&quot; you will find where the &quot;Execution Time&quot; NamedMeasurement xml element is emitted into the 
Test.xml file that gets submitted to the dart server. This time is measured by CTest when it runs your test, and includes launching the executable and waiting for it to finish...<br><br>If you want to include measurements of your own design in the dashboard results for your test, you can emit &quot;DartMeasurement&quot; xml fragments in your test&#39;s output, and ctest will include those as NamedMeasurement xml elements in the 
Test.xml file.<br><br>Something like this, for example, in your test output:<br>&lt;DartMeasurement name=&quot;MyMoreAccurateTiming&quot; type=&quot;numeric/double&quot;&gt;0.03434&lt;/DartMeasurement&gt;<br><br>The code that transforms those xml fragments can also be found in cmCTestTestHandler. I do not know if all measurements of this type show up as entities that get graphed on the dashboard web pages, but I do know that they show up when viewing an individual test&#39;s result page.
<br><br>Good luck,<br>David Cole<br><br><br><div><span class="gmail_quote">On 10/17/07, <b class="gmail_sendername">James Bigler</b> &lt;<a href="mailto:bigler@cs.utah.edu">bigler@cs.utah.edu</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Is there a CTest mailing list or Dart mailing list I should ask this question on?<br><br>Thanks,<br>James<br><br>James Bigler wrote:<br>&gt; I&#39;m not sure if this is the right place to ask this question, so please<br>&gt; inform me if there is a better list to post this question to.
<br>&gt;<br>&gt; I&#39;m starting to use ctest to submit some tests to a dart server.&nbsp;&nbsp;One of<br>&gt; the nightly tests I run is a benchmark test.&nbsp;&nbsp;The execution time in the<br>&gt; dart display doesn&#39;t match the actual run time reported by my test to
<br>&gt; stdout.&nbsp;&nbsp;The dart times vary wildly whereas the times reported by my<br>&gt; executable are identical.<br>&gt;<br>&gt; I know that Dart provides a way to graph a reported value over time (it<br>&gt; does this with the current test run time), and I was wondering if there
<br>&gt; was a way I could grab the stdout from my test, get the value I need and<br>&gt; submit that to the dash board.<br>&gt;<br>&gt; Currently, my test looks like this:<br>&gt;<br>&gt; ADD_TEST(DefaultSceneNoDisplayBench ${CMAKE_BINARY_DIR}/bin/manta
<br>&gt; &quot;-nodisplaybench&quot;)<br>&gt;<br>&gt; My current drop method is &quot;xmlrpc&quot;.<br>&gt;<br>&gt; Thanks,<br>&gt; James<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">http://www.cmake.org/mailman/listinfo/cmake</a><br></blockquote></div><br>