Random bits of clean-up

This commit is contained in:
Phil Nash
2012-10-03 18:12:57 +01:00
parent 9e7e63c687
commit 4104fb735e
5 changed files with 12 additions and 25 deletions

View File

@@ -304,3 +304,12 @@ TEST_CASE( "first tag", "[tag1]" )
TEST_CASE( "second tag", "[tag2]" )
{
}
TEST_CASE( "spawn a new process", "[hide]" )
{
// !TBD Work in progress
char line[200];
FILE* output = popen("./CatchSelfTest ./failing/matchers/StartsWith", "r");
while ( fgets(line, 199, output) )
std::cout << line;
}