<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="Content-Type">
</head>
<body text="#000000" bgcolor="#ffffff">
I figured out the problem. It was the custom command, some of its
arguments had " which was messing up with the arguments to the ctest
launcher i guess, I corrected it and now it builds without any issues.
Thanks for the help :)<br>
<br>
Cheers,<br>
Johny<br>
<br>
On 08/30/2010 03:22 PM, David Cole wrote:
<blockquote
 cite="mid:AANLkTikfSRPewb68NLCfn8mcP84cfoHRdzyBke5P7HM9@mail.gmail.com"
 type="cite">Not sure about this one.
  <div><br>
  </div>
  <div>Can you share your project source tree / CMakeLists files?</div>
  <div><br>
  </div>
  <div>Is it publicly available?<br>
  <br>
  </div>
  <div>Or reproduce the problem with a very small representative
CMakeLists file?</div>
  <div><br>
  </div>
  <div><br>
  </div>
  <div>Thanks,</div>
  <div>David</div>
  <div><br>
  </div>
  <div><br>
  <div class="gmail_quote">On Mon, Aug 30, 2010 at 8:41 AM, Johny <span
 dir="ltr">&lt;<a moz-do-not-send="true"
 href="mailto:Johny.Jose@cern.ch">Johny.Jose@cern.ch</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 text="#000000" bgcolor="#ffffff">
I did what you said but now I have a different problem. I see this
command being run and it has its output as G__CDB.cxx <br>
    <br>
"/home/johny/opt/cmake/bin/ctest" --launch --target-name CDB
--build-dir /home/johny/opt/alice/AliRootInstall/STEER --output
G__CDB.cxx <br>
    <br>
however this file is not created in that directory. The file is
generated through a custom command. How do i fix this ?<br>
    <br>
Cheers,<br>
    <font color="#888888">Johny</font>
    <div>
    <div class="h5"><br>
    <br>
On 08/30/2010 01:51 PM, David Cole wrote:
    <blockquote type="cite">If you are going to run a dashboard with
"ctest -D
Experimental" then the CTEST_USE_LAUNCHERS setting has to be saved in
the CMake cache so that *cmake*, at configure time, knows how to
generate the proper command lines in the generated Makefiles.<br>
      <br>
      <div>So you need to pass -DCTEST_USE_LAUNCHERS=ON to cmake at
configure time.</div>
      <div><br>
      </div>
      <div>The other variables may be set in a CTestCustom.cmake file
at
the top level of your build tree.</div>
      <div><br>
      </div>
      <div>There is also a setting in CDash that tells it whether or
not to
display labels on a per-project basis: on the "edit project" page, on
the "Miscellaneous" tab, there's a "Display Labels" checkbox. Make sure
that's checked in your CDash project settings.</div>
      <div><br>
      </div>
      <div><br>
      </div>
      <div>HTH,</div>
      <div>David</div>
      <div><br>
      </div>
      <div><br>
      <div class="gmail_quote">On Mon, Aug 30, 2010 at 7:38 AM, Johny <span
 dir="ltr">&lt;<a moz-do-not-send="true"
 href="mailto:Johny.Jose@cern.ch" target="_blank">Johny.Jose@cern.ch</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 text="#000000" bgcolor="#ffffff">Well i wasn't able to see
labels on my builds, and then later i cudn't
see build reports either. I was messing around with the configuration
files and i guess i must have put something in the wrong place.<br>
        <br>
So basically in which file do i have to set the variables
CTEST_CUSTOM_MAXIMUM_NUMBER_OF_ERRORS,
CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS,
CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE , CTEST_USE_LAUNCHERS&nbsp; so
that when i run ctest -D Experimental those values will be used and my
build results get labeled ?<br>
        <br>
Cheers,<br>
        <font color="#888888">Johny</font>
        <div>
        <div><br>
        <br>
        <br>
        <br>
On 08/30/2010 01:35 PM, David Cole wrote:
        <blockquote type="cite">You're not doing anything wrong.
DartConfiguration.tcl is
simple a legacy file name that is still in use. It is actually: not
tcl, does not require Dart usage...
          <div><br>
          </div>
          <div>Is there a problem with your submissions to your CDash
server?
Do you get some kind of error?<br>
          <br>
          </div>
          <div><br>
          <div class="gmail_quote">On Mon, Aug 30, 2010 at 7:22 AM,
Johny <span dir="ltr">&lt;<a moz-do-not-send="true"
 href="mailto:Johny.Jose@cern.ch" target="_blank">Johny.Jose@cern.ch</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 text="#000000" bgcolor="#ffffff">Hey,<br>
            <br>
I was trying to use the ctest custom configuration file
CTestCustom.ctest to set my limits for warnings and errors higher than
the defaults and also to enable labels while building using the
CTEST_USE_LAUNCHERS variable. I have set all this up in the file
however when i run Ctest -D Experimental i get this message :<br>
            <br>
UpdateCTestConfiguration&nbsp; from :<u>/home/johny/opt/alice/AliRootInstall/DartConfiguration.tcl</u><br>
Parse Config file:<u>/home/johny/opt/alice/AliRootInstall/DartConfiguration.tcl</u><br>
            <br>
Is this supposed to happen? Where is this DartConfiguration.tcl file
coming from ? I'm using CDash not DART. I even tried specify the
configuration file to use by ctest using the option --ctest-config but
it still gives me this message. What am i doing wrong ?<br>
            <br>
Cheers,<br>
Johny<br>
            </div>
            <br>
_______________________________________________<br>
Powered by <a moz-do-not-send="true" href="http://www.kitware.com"
 target="_blank">www.kitware.com</a><br>
            <br>
Visit other Kitware open-source projects at <a moz-do-not-send="true"
 href="http://www.kitware.com/opensource/opensource.html"
 target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
            <br>
Please keep messages on-topic and check the CMake FAQ at: <a
 moz-do-not-send="true" href="http://www.cmake.org/Wiki/CMake_FAQ"
 target="_blank">http://www.cmake.org/Wiki/CMake_FAQ</a><br>
            <br>
Follow this link to subscribe/unsubscribe:<br>
            <a moz-do-not-send="true"
 href="http://www.cmake.org/mailman/listinfo/cmake" target="_blank">http://www.cmake.org/mailman/listinfo/cmake</a><br>
          </blockquote>
          </div>
          <br>
          </div>
        </blockquote>
        <br>
        </div>
        </div>
        </div>
      </blockquote>
      </div>
      <br>
      </div>
    </blockquote>
    <br>
    </div>
    </div>
    </div>
  </blockquote>
  </div>
  <br>
  </div>
</blockquote>
<br>
</body>
</html>