Fixed space separated lists of test specs

- they form an AND expression. They were forming an OR expression due to changes made to fix -f - so that had to be fixed differently
This commit is contained in:
Phil Nash 2014-05-20 18:28:19 +01:00
parent baf181f15d
commit 2c9e9ac004
3 changed files with 9 additions and 2 deletions

View file

@ -49,7 +49,7 @@ namespace Catch {
while( std::getline( f, line ) ) {
line = trim(line);
if( !line.empty() && !startsWith( line, "#" ) )
addTestOrTags( config, "\"" + line + "\"" );
addTestOrTags( config, "\"" + line + "\"," );
}
}