summaryrefslogtreecommitdiff
path: root/include/internal/catch_config.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/internal/catch_config.cpp')
-rw-r--r--include/internal/catch_config.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/internal/catch_config.cpp b/include/internal/catch_config.cpp
index e8ad2a81..d9ee9182 100644
--- a/include/internal/catch_config.cpp
+++ b/include/internal/catch_config.cpp
@@ -16,10 +16,7 @@ namespace Catch {
m_stream( openStream() )
{
TestSpecParser parser(ITagAliasRegistry::get());
- if (data.testsOrTags.empty()) {
- parser.parse("~[.]"); // All not hidden tests
- }
- else {
+ if (!data.testsOrTags.empty()) {
m_hasTestFilters = true;
for( auto const& testOrTags : data.testsOrTags )
parser.parse( testOrTags );