[CMake] Unit Testing for CMake Scripts

2016-06-01 Thread Walter Gray
I was about to ask the list, but some googling lead me to this: https://github.com/polysquare/cmake-unit I am not the developer, but he doesn't appear to be on here so I thought I should share. This looks incredibly useful -- Powered by www.kitware.com Please keep messages on-topic and check t

Re: [CMake] "unit" testing your CMakeLists.txt

2009-02-11 Thread Bill Hoffman
Mike Arthur wrote: On Monday 09 February 2009 20:15:33 Tyler Roscoe wrote: Does anyone do anything like this? Are there tools around to help? Is this a worthwhile thing to think about? I think this shouldn't be separate from the rest of your other TDD stuff that the non-buildsystem developers a

Re: [CMake] "unit" testing your CMakeLists.txt

2009-02-11 Thread Mike Arthur
On Monday 09 February 2009 20:15:33 Tyler Roscoe wrote: > Does anyone do anything like this? Are there tools around to help? Is > this a worthwhile thing to think about? I think this shouldn't be separate from the rest of your other TDD stuff that the non-buildsystem developers are doing. In my

Re: [CMake] "unit" testing your CMakeLists.txt

2009-02-11 Thread Hugo Heden
2009/2/11 Tyler Roscoe : > Bumping this one time. Any thoughts? Is there a better place to ask this > sort of question? > Just wanted to say that I'm interested too, so I'd follow any discussion with interest. Best regards Hugo Heden > Thanks, > tyler > > On Mon, Feb 09, 2009 at 12:15:33PM -080

Re: [CMake] "unit" testing your CMakeLists.txt

2009-02-10 Thread Philip Lowman
On Wed, Feb 11, 2009 at 1:03 AM, Tyler Roscoe wrote: > Bumping this one time. Any thoughts? Is there a better place to ask this > sort of question? Sorry, my eyes glazed over the first time I read this sentence and I think I was pretty tired so not knowing what these acronyms went I think I jus

Re: [CMake] "unit" testing your CMakeLists.txt

2009-02-10 Thread Tyler Roscoe
Bumping this one time. Any thoughts? Is there a better place to ask this sort of question? Thanks, tyler On Mon, Feb 09, 2009 at 12:15:33PM -0800, Tyler Roscoe wrote: > My company is adopting Test-Driven Development. I am wondering if any of > you build engineers in a similar position have given

[CMake] "unit" testing your CMakeLists.txt

2009-02-09 Thread Tyler Roscoe
My company is adopting Test-Driven Development. I am wondering if any of you build engineers in a similar position have given any thought to how one might use this approach when developing your build systems. In one sense, you can say, "Well, the build is the test. If I say 'go' and I end up with

Re: [CMake] Unit Testing

2009-01-05 Thread Philip Lowman
On Mon, Jan 5, 2009 at 12:32 AM, Jeffrey Drake wrote: > > I have been trying to figure out the easiest way to setup unit tests. I > have seen a unit testing framework called 'check' (some documentation: > > http://check.sourceforge.net/doc/check.html/Setting-Up-the-Money-Build.html#Setting-Up-the

[CMake] Unit Testing

2009-01-04 Thread Jeffrey Drake
I have been trying to figure out the easiest way to setup unit tests. I have seen a unit testing framework called 'check' (some documentation: http://check.sourceforge.net/doc/check.html/Setting-Up-the-Money-Build.html#Setting-Up-the-Money-Build ) but the problem seems to be that its examples are

Re: [CMake] Unit testing in CMake

2008-11-24 Thread Eric NOULARD
Le Mon, 24 Nov 2008 16:06:06 -0600, "Robert Dailey" <[EMAIL PROTECTED]> a écrit : > Hi, > > I'm reading this wiki > articleon how to > perform tests using CMake. However, the tests I'm wanting to run > aren't already built. I need to be able to

[CMake] Unit testing in CMake

2008-11-24 Thread Robert Dailey
Hi, I'm reading this wiki articleon how to perform tests using CMake. However, the tests I'm wanting to run aren't already built. I need to be able to use CMake to first compile the test and then run it afterwards. How would I handle this behavio