mirror of
https://github.com/catchorg/Catch2.git
synced 2025-05-27 15:09:33 +00:00
Added -l tags
- which lists available tags. - also improved formatting of -l for tests
This commit is contained in:
parent
d0df295c25
commit
e324d2829d
7 changed files with 710 additions and 147 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue