On Fri, Dec 10, 2010 at 10:42 AM, Wojciech Migda wrote:
>>
>> You can do it all in one step with ctest, but you have to write a
>> ctest -S script, and call that... Inside it, you can do a "configure
>> from scratch" using the ctest_configure(...) command. Then you'll see
>> all the configure outp
>
> You can do it all in one step with ctest, but you have to write a
> ctest -S script, and call that... Inside it, you can do a "configure
> from scratch" using the ctest_configure(...) command. Then you'll see
> all the configure output submitted to the dashboard.
>
> Poke around the wiki and
On Thu, Dec 9, 2010 at 10:44 AM, Wojciech Migda wrote:
>
> Użytkownik napisał(a):
>> From:
>> Subject: Re: [CMake] Simultaneous --build-and-test and CDash submission
>> To: "Wojciech Migda" ;
>>
>> On Thu, Dec 9, 2010 at 4:13 AM, Wojciech Migd
Użytkownik napisał(a):
> From:
> Subject: Re: [CMake] Simultaneous --build-and-test and CDash submission
> To: "Wojciech Migda" ;
>
> On Thu, Dec 9, 2010 at 4:13 AM, Wojciech Migda wrote:
> > Hi,
> >
> > I have unit tests configured for CDash submi
> >
> > So my question is how to achieve CDash submission with 'scratch'
> configure
> > info (just as if cmake was invoked on clean environment), build info
>
> > (compilation warnings and such) and test results by issueing single
> command ?
> >
> > Thanks for help,
> >
> > Wojtek
>
> Hi Wo
On Thu, Dec 9, 2010 at 4:13 AM, Wojciech Migda wrote:
> Hi,
>
> I have unit tests configured for CDash submissions. Submissions do work if I
> issue in sequence TWO commands which go pretty much like this:
>
> # configure the build system
> ${CMAKE_ROOT}${CMAKE_BINDIR}/cmake .
> # build tests
> m
>>> On 9-12-2010 at 10:13, in message ,
Wojciech Migda
wrote:
> Hi,
>
> I have unit tests configured for CDash submissions. Submissions do
work if I
> issue in sequence TWO commands which go pretty much like this:
>
> # configure the build system
> ${CMAKE_ROOT}${CMAKE_BINDIR}/cmake .
> # buil
Hi,
I have unit tests configured for CDash submissions. Submissions do work if I
issue in sequence TWO commands which go pretty much like this:
# configure the build system
${CMAKE_ROOT}${CMAKE_BINDIR}/cmake .
# build tests
make clean ; make
# run tests
${CMAKE_ROOT}${CMAKE_BINDIR}/ctest
Howeve