Re: [CMake] Simultaneous --build-and-test and CDash submission

2010-12-10 Thread David Cole
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

Re: [CMake] Simultaneous --build-and-test and CDash submission

2010-12-10 Thread Wojciech Migda
> > 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

Re: [CMake] Simultaneous --build-and-test and CDash submission

2010-12-09 Thread David Cole
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

Re: [CMake] Simultaneous --build-and-test and CDash submission

2010-12-09 Thread Wojciech Migda
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

Re: [CMake] Simultaneous --build-and-test and CDash submission

2010-12-09 Thread Wojciech Migda
> > > > 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

Re: [CMake] Simultaneous --build-and-test and CDash submission

2010-12-09 Thread David Cole
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

Re: [CMake] Simultaneous --build-and-test and CDash submission

2010-12-09 Thread Marcel Loose
>>> 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

[CMake] Simultaneous --build-and-test and CDash submission

2010-12-09 Thread Wojciech Migda
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