mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-11-03 21:49:32 +01:00 
			
		
		
		
	v1.9.5
This commit is contained in:
		@@ -1,6 +1,6 @@
 | 
			
		||||
/*
 | 
			
		||||
 *  Catch v1.9.4
 | 
			
		||||
 *  Generated: 2017-05-16 13:51:55.506519
 | 
			
		||||
 *  Catch v1.9.5
 | 
			
		||||
 *  Generated: 2017-06-15 12:03:23.301505
 | 
			
		||||
 *  ----------------------------------------------------------
 | 
			
		||||
 *  This file has been merged from multiple headers. Please don't edit it directly
 | 
			
		||||
 *  Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved.
 | 
			
		||||
@@ -220,7 +220,7 @@
 | 
			
		||||
 | 
			
		||||
// Use __COUNTER__ if the compiler supports it
 | 
			
		||||
#if ( defined _MSC_VER && _MSC_VER >= 1300 ) || \
 | 
			
		||||
    ( defined __GNUC__  && __GNUC__ >= 4 && __GNUC_MINOR__ >= 3 ) || \
 | 
			
		||||
    ( defined __GNUC__  && ( __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3 )) ) || \
 | 
			
		||||
    ( defined __clang__ && __clang_major__ >= 3 )
 | 
			
		||||
 | 
			
		||||
#define CATCH_INTERNAL_CONFIG_COUNTER
 | 
			
		||||
@@ -927,8 +927,8 @@ namespace Catch {
 | 
			
		||||
        template<typename T> STATIC_ASSERT_Expression_Too_Complex_Please_Rewrite_As_Binary_Comparison& operator && ( T const& );
 | 
			
		||||
        template<typename T> STATIC_ASSERT_Expression_Too_Complex_Please_Rewrite_As_Binary_Comparison& operator || ( T const& );
 | 
			
		||||
 | 
			
		||||
	private:
 | 
			
		||||
		DecomposedExpression& operator = (DecomposedExpression const&);
 | 
			
		||||
    private:
 | 
			
		||||
        DecomposedExpression& operator = (DecomposedExpression const&);
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    struct AssertionInfo
 | 
			
		||||
@@ -1571,7 +1571,7 @@ std::string toString( std::nullptr_t );
 | 
			
		||||
 | 
			
		||||
#ifdef __OBJC__
 | 
			
		||||
    std::string toString( NSString const * const& nsstring );
 | 
			
		||||
    std::string toString( NSString * CATCH_ARC_STRONG const& nsstring );
 | 
			
		||||
    std::string toString( NSString * CATCH_ARC_STRONG & nsstring );
 | 
			
		||||
    std::string toString( NSObject* const& nsObject );
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
@@ -1855,7 +1855,7 @@ public:
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    virtual void reconstructExpression( std::string& dest ) const CATCH_OVERRIDE {
 | 
			
		||||
        dest = Catch::toString( m_truthy );
 | 
			
		||||
        dest = Catch::toString( m_lhs );
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
private:
 | 
			
		||||
@@ -3490,16 +3490,16 @@ return @ desc; \
 | 
			
		||||
#include <crtdbg.h>
 | 
			
		||||
class LeakDetector {
 | 
			
		||||
public:
 | 
			
		||||
	LeakDetector() {
 | 
			
		||||
		int flag = _CrtSetDbgFlag(_CRTDBG_REPORT_FLAG);
 | 
			
		||||
		flag |= _CRTDBG_LEAK_CHECK_DF;
 | 
			
		||||
		flag |= _CRTDBG_ALLOC_MEM_DF;
 | 
			
		||||
		_CrtSetDbgFlag(flag);
 | 
			
		||||
		_CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE | _CRTDBG_MODE_DEBUG);
 | 
			
		||||
		_CrtSetReportFile(_CRT_WARN, _CRTDBG_FILE_STDERR);
 | 
			
		||||
		// Change this to leaking allocation's number to break there
 | 
			
		||||
		_CrtSetBreakAlloc(-1);
 | 
			
		||||
	}
 | 
			
		||||
    LeakDetector() {
 | 
			
		||||
        int flag = _CrtSetDbgFlag(_CRTDBG_REPORT_FLAG);
 | 
			
		||||
        flag |= _CRTDBG_LEAK_CHECK_DF;
 | 
			
		||||
        flag |= _CRTDBG_ALLOC_MEM_DF;
 | 
			
		||||
        _CrtSetDbgFlag(flag);
 | 
			
		||||
        _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE | _CRTDBG_MODE_DEBUG);
 | 
			
		||||
        _CrtSetReportFile(_CRT_WARN, _CRTDBG_FILE_STDERR);
 | 
			
		||||
        // Change this to leaking allocation's number to break there
 | 
			
		||||
        _CrtSetBreakAlloc(-1);
 | 
			
		||||
    }
 | 
			
		||||
};
 | 
			
		||||
#else
 | 
			
		||||
class LeakDetector {};
 | 
			
		||||
@@ -8309,7 +8309,7 @@ namespace Catch {
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    inline Version libraryVersion() {
 | 
			
		||||
        static Version version( 1, 9, 4, "", 0 );
 | 
			
		||||
        static Version version( 1, 9, 5, "", 0 );
 | 
			
		||||
        return version;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
@@ -8661,6 +8661,10 @@ namespace Catch {
 | 
			
		||||
        m_timer.start();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
#if defined(_MSC_VER)
 | 
			
		||||
#pragma warning(push)
 | 
			
		||||
#pragma warning(disable:4996) // std::uncaught_exception is deprecated in C++17
 | 
			
		||||
#endif
 | 
			
		||||
    Section::~Section() {
 | 
			
		||||
        if( m_sectionIncluded ) {
 | 
			
		||||
            SectionEndInfo endInfo( m_info, m_assertions, m_timer.getElapsedSeconds() );
 | 
			
		||||
@@ -8670,6 +8674,9 @@ namespace Catch {
 | 
			
		||||
                getResultCapture().sectionEnded( endInfo );
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
#if defined(_MSC_VER)
 | 
			
		||||
#pragma warning(pop)
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
    // This indicates whether the section should be executed or not
 | 
			
		||||
    Section::operator bool() const {
 | 
			
		||||
@@ -8985,7 +8992,7 @@ std::string toString( std::nullptr_t ) {
 | 
			
		||||
            return "nil";
 | 
			
		||||
        return "@" + toString([nsstring UTF8String]);
 | 
			
		||||
    }
 | 
			
		||||
    std::string toString( NSString * CATCH_ARC_STRONG const& nsstring ) {
 | 
			
		||||
    std::string toString( NSString * CATCH_ARC_STRONG & nsstring ) {
 | 
			
		||||
        if( !nsstring )
 | 
			
		||||
            return "nil";
 | 
			
		||||
        return "@" + toString([nsstring UTF8String]);
 | 
			
		||||
@@ -10028,20 +10035,6 @@ namespace Catch {
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
// #included from: catch_reenable_warnings.h
 | 
			
		||||
 | 
			
		||||
#define TWOBLUECUBES_CATCH_REENABLE_WARNINGS_H_INCLUDED
 | 
			
		||||
 | 
			
		||||
#ifdef __clang__
 | 
			
		||||
#    ifdef __ICC // icpc defines the __clang__ macro
 | 
			
		||||
#        pragma warning(pop)
 | 
			
		||||
#    else
 | 
			
		||||
#        pragma clang diagnostic pop
 | 
			
		||||
#    endif
 | 
			
		||||
#elif defined __GNUC__
 | 
			
		||||
#    pragma GCC diagnostic pop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
namespace Catch {
 | 
			
		||||
    class XmlReporter : public StreamingReporterBase {
 | 
			
		||||
@@ -11303,7 +11296,7 @@ extern "C" int wmain (int argc, wchar_t * argv[], wchar_t * []) {
 | 
			
		||||
int main (int argc, char * argv[]) {
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
	int result = Catch::Session().run( argc, argv );
 | 
			
		||||
    int result = Catch::Session().run( argc, argv );
 | 
			
		||||
    return ( result < 0xff ? result : 0xff );
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@@ -11504,5 +11497,19 @@ int main (int argc, char * const argv[]) {
 | 
			
		||||
 | 
			
		||||
using Catch::Detail::Approx;
 | 
			
		||||
 | 
			
		||||
// #included from: internal/catch_reenable_warnings.h
 | 
			
		||||
 | 
			
		||||
#define TWOBLUECUBES_CATCH_REENABLE_WARNINGS_H_INCLUDED
 | 
			
		||||
 | 
			
		||||
#ifdef __clang__
 | 
			
		||||
#    ifdef __ICC // icpc defines the __clang__ macro
 | 
			
		||||
#        pragma warning(pop)
 | 
			
		||||
#    else
 | 
			
		||||
#        pragma clang diagnostic pop
 | 
			
		||||
#    endif
 | 
			
		||||
#elif defined __GNUC__
 | 
			
		||||
#    pragma GCC diagnostic pop
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#endif // TWOBLUECUBES_SINGLE_INCLUDE_CATCH_HPP_INCLUDED
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user