Using flags to limit the tests run in Google Test framework is great, but in my case most of the time is wasted on waiting for the entire test project to compile again and again while I'm writing tests.

Is there an easy way to limit the compilation to just those test cases I'm currently working on?

(Removing the test cpp files and resource cpp files from VS is always an alternative, but it's a lot of work...)

link|improve this question

77% accept rate
feedback

1 Answer

up vote 0 down vote accepted

You can always split your tests to different projects (perhaps under the same solution in Visual Studio) thus building an executable per group of test cases

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.