mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-11-04 00:51:52 +01:00 
			
		
		
		
	Swept: `-Wpadded` in some places (where it caused extra size, instead of just saying "hey, we padded struct at the end to align, just as standard says") `-Wweak-vtables` everywhere (Clang) `-Wexit-time-destructors` everywhere (Clang) `-Wmissing-noreturn` everywhere (Clang) The last three are enabled for Clang compilation going forward. Also enabled `-Wunreachable-code` for Clang and GCC
		
			
				
	
	
		
			60 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 *  Created by Martin on 19/07/2017.
 | 
						|
 *
 | 
						|
 *  Distributed under the Boost Software License, Version 1.0. (See accompanying
 | 
						|
 *  file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
 | 
						|
 */
 | 
						|
 | 
						|
#include "catch_test_spec.h"
 | 
						|
#include "catch_string_manip.h"
 | 
						|
 | 
						|
#include <algorithm>
 | 
						|
#include <string>
 | 
						|
#include <vector>
 | 
						|
#include <memory>
 | 
						|
 | 
						|
namespace Catch {
 | 
						|
 | 
						|
    TestSpec::Pattern::~Pattern() = default;
 | 
						|
    TestSpec::NamePattern::~NamePattern() = default;
 | 
						|
    TestSpec::TagPattern::~TagPattern() = default;
 | 
						|
    TestSpec::ExcludedPattern::~ExcludedPattern() = default;
 | 
						|
 | 
						|
    TestSpec::NamePattern::NamePattern( std::string const& name )
 | 
						|
    : m_wildcardPattern( toLower( name ), CaseSensitive::No )
 | 
						|
    {}
 | 
						|
    bool TestSpec::NamePattern::matches( TestCaseInfo const& testCase ) const {
 | 
						|
        return m_wildcardPattern.matches( toLower( testCase.name ) );
 | 
						|
    }
 | 
						|
 | 
						|
    TestSpec::TagPattern::TagPattern( std::string const& tag ) : m_tag( toLower( tag ) ) {}
 | 
						|
    bool TestSpec::TagPattern::matches( TestCaseInfo const& testCase ) const {
 | 
						|
        return std::find(begin(testCase.lcaseTags),
 | 
						|
                         end(testCase.lcaseTags),
 | 
						|
                         m_tag) != end(testCase.lcaseTags);
 | 
						|
    }
 | 
						|
 | 
						|
    TestSpec::ExcludedPattern::ExcludedPattern( PatternPtr const& underlyingPattern ) : m_underlyingPattern( underlyingPattern ) {}
 | 
						|
    bool TestSpec::ExcludedPattern::matches( TestCaseInfo const& testCase ) const { return !m_underlyingPattern->matches( testCase ); }
 | 
						|
 | 
						|
    bool TestSpec::Filter::matches( TestCaseInfo const& testCase ) const {
 | 
						|
        // All patterns in a filter must match for the filter to be a match
 | 
						|
        for( auto const& pattern : m_patterns ) {
 | 
						|
            if( !pattern->matches( testCase ) )
 | 
						|
                return false;
 | 
						|
        }
 | 
						|
        return true;
 | 
						|
    }
 | 
						|
 | 
						|
    bool TestSpec::hasFilters() const {
 | 
						|
        return !m_filters.empty();
 | 
						|
    }
 | 
						|
    bool TestSpec::matches( TestCaseInfo const& testCase ) const {
 | 
						|
        // A TestSpec matches if any filter matches
 | 
						|
        for( auto const& filter : m_filters )
 | 
						|
            if( filter.matches( testCase ) )
 | 
						|
                return true;
 | 
						|
        return false;
 | 
						|
    }
 | 
						|
}
 |