mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-04 05:09:53 +01:00
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:
parent
baf181f15d
commit
2c9e9ac004
@ -49,7 +49,7 @@ namespace Catch {
|
|||||||
while( std::getline( f, line ) ) {
|
while( std::getline( f, line ) ) {
|
||||||
line = trim(line);
|
line = trim(line);
|
||||||
if( !line.empty() && !startsWith( line, "#" ) )
|
if( !line.empty() && !startsWith( line, "#" ) )
|
||||||
addTestOrTags( config, "\"" + line + "\"" );
|
addTestOrTags( config, "\"" + line + "\"," );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -36,10 +36,10 @@ namespace Catch {
|
|||||||
visitChar( m_arg[m_pos] );
|
visitChar( m_arg[m_pos] );
|
||||||
if( m_mode == Name )
|
if( m_mode == Name )
|
||||||
addPattern<TestSpec::NamePattern>();
|
addPattern<TestSpec::NamePattern>();
|
||||||
addFilter();
|
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
TestSpec testSpec() {
|
TestSpec testSpec() {
|
||||||
|
addFilter();
|
||||||
return m_testSpec;
|
return m_testSpec;
|
||||||
}
|
}
|
||||||
private:
|
private:
|
||||||
|
@ -148,6 +148,13 @@ TEST_CASE( "Parse test names and tags", "" ) {
|
|||||||
CHECK( spec.matches( tcB ) == false );
|
CHECK( spec.matches( tcB ) == false );
|
||||||
CHECK( spec.matches( tcC ) == true );
|
CHECK( spec.matches( tcC ) == true );
|
||||||
}
|
}
|
||||||
|
SECTION( "Two tags, spare separated" ) {
|
||||||
|
TestSpec spec = parseTestSpec( "[two] [x]" );
|
||||||
|
CHECK( spec.hasFilters() == true );
|
||||||
|
CHECK( spec.matches( tcA ) == false );
|
||||||
|
CHECK( spec.matches( tcB ) == false );
|
||||||
|
CHECK( spec.matches( tcC ) == true );
|
||||||
|
}
|
||||||
SECTION( "Wildcarded name and tag" ) {
|
SECTION( "Wildcarded name and tag" ) {
|
||||||
TestSpec spec = parseTestSpec( "*name*[x]" );
|
TestSpec spec = parseTestSpec( "*name*[x]" );
|
||||||
CHECK( spec.hasFilters() == true );
|
CHECK( spec.hasFilters() == true );
|
||||||
|
Loading…
Reference in New Issue
Block a user