mirror of
https://github.com/catchorg/Catch2.git
synced 2025-05-30 00:17:52 +00:00
Don't run tests starting with ./ by default. Changed all low-level self tests to be in ./
This commit is contained in:
parent
f36d777343
commit
684baf1053
9 changed files with 42 additions and 33 deletions
|
@ -113,7 +113,8 @@ namespace Catch
|
|||
std::vector<TestCaseInfo> allTests = Hub::getTestCaseRegistry().getAllTests();
|
||||
for( std::size_t i=0; i < allTests.size(); ++i )
|
||||
{
|
||||
runTest( allTests[i] );
|
||||
if( !allTests[i].isHidden() )
|
||||
runTest( allTests[i] );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue