mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-17 11:12:25 +01:00
--list-test-names-and-sources Fixed tabs/spaces
This commit is contained in:
parent
8fd23466ba
commit
d0bd13dc17
@ -164,10 +164,10 @@ namespace Catch {
|
||||
Option<std::size_t> listedCount;
|
||||
if( config.listTests() )
|
||||
listedCount = listedCount.valueOr(0) + listTests( config );
|
||||
if( config.listTestNamesAndSources() )
|
||||
listedCount = listedCount.valueOr(0) + listTestsNames(config, true);
|
||||
if( config.listTestNamesOnly() )
|
||||
listedCount = listedCount.valueOr(0) + listTestsNames( config , false );
|
||||
if( config.listTestNamesAndSources() )
|
||||
listedCount = listedCount.valueOr(0) + listTestsNames( config , true );
|
||||
if( config.listTags() )
|
||||
listedCount = listedCount.valueOr(0) + listTags( config );
|
||||
if( config.listReporters() )
|
||||
|
Loading…
Reference in New Issue
Block a user