mirror of
https://github.com/catchorg/Catch2.git
synced 2025-12-14 14:12:12 +01:00
Added -l tags
- which lists available tags. - also improved formatting of -l for tests
This commit is contained in:
@@ -66,7 +66,7 @@ namespace Catch {
|
||||
std::string withoutTab = _str.substr( 0, nextTab ) + _str.substr( nextTab+1 );
|
||||
return wrapInternal( withoutTab );
|
||||
}
|
||||
else if( isWrapPoint( _str[pos] ) ) {
|
||||
else if( pos > 0 && isWrapPoint( _str[pos] ) ) {
|
||||
wrapPoint = pos;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user