mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-26 07:16:10 +01:00
Fixed issue with reading test names from file
This commit is contained in:
parent
fcf0deb116
commit
e8aa0bb19b
@ -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 + "\"" );
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -36,10 +36,10 @@ namespace Catch {
|
||||
visitChar( m_arg[m_pos] );
|
||||
if( m_mode == Name )
|
||||
addPattern<TestSpec::NamePattern>();
|
||||
addFilter();
|
||||
return *this;
|
||||
}
|
||||
TestSpec testSpec() {
|
||||
addFilter();
|
||||
return m_testSpec;
|
||||
}
|
||||
private:
|
||||
|
Loading…
Reference in New Issue
Block a user