mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 21:36:11 +01:00
-f supports quoted test names (test name surrounded with " characters).
This is the first part to resolving #717
This commit is contained in:
parent
c23b374f3d
commit
b1eeec7c69
@ -85,8 +85,11 @@ namespace Catch {
|
|||||||
std::string line;
|
std::string line;
|
||||||
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 + "\"," );
|
if( !startsWith( line, "\"" ) )
|
||||||
|
line = "\"" + line + "\"";
|
||||||
|
addTestOrTags( config, line + "," );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -483,3 +483,7 @@ TEST_CASE( "This test 'should' fail but doesn't", "[.][failing][!shouldfail]" )
|
|||||||
{
|
{
|
||||||
SUCCEED( "oops!" );
|
SUCCEED( "oops!" );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST_CASE( "# A test name that starts with a #" ) {
|
||||||
|
SUCCEED( "yay" );
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user