mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-10-31 04:07:10 +01:00 
			
		
		
		
	v1.5.3
This commit is contained in:
		| @@ -1,6 +1,6 @@ | ||||
|  | ||||
|  | ||||
| *v1.5.2* | ||||
| *v1.5.3* | ||||
|  | ||||
| Build status (on Travis CI) [](https://travis-ci.org/philsquared/Catch) | ||||
|  | ||||
|   | ||||
| @@ -37,7 +37,7 @@ namespace Catch { | ||||
|         return os; | ||||
|     } | ||||
|  | ||||
|     Version libraryVersion( 1, 5, 2, "", 0 ); | ||||
|     Version libraryVersion( 1, 5, 3, "", 0 ); | ||||
|  | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -1,6 +1,6 @@ | ||||
| /* | ||||
|  *  Catch v1.5.2 | ||||
|  *  Generated: 2016-05-07 23:13:51.221005 | ||||
|  *  Catch v1.5.3 | ||||
|  *  Generated: 2016-05-10 19:09:28.805441 | ||||
|  *  ---------------------------------------------------------- | ||||
|  *  This file has been merged from multiple headers. Please don't edit it directly | ||||
|  *  Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved. | ||||
| @@ -6480,13 +6480,15 @@ namespace Catch { | ||||
|             it != itEnd; | ||||
|             ++it ) { | ||||
|             std::pair<std::set<TestCase>::const_iterator, bool> prev = seenFunctions.insert( *it ); | ||||
|             if( !prev.second ){ | ||||
|                 Catch::cerr() | ||||
|                 << Colour( Colour::Red ) | ||||
|                 << "error: TEST_CASE( \"" << it->name << "\" ) already defined.\n" | ||||
|                 << "\tFirst seen at " << prev.first->getTestCaseInfo().lineInfo << "\n" | ||||
|                 << "\tRedefined at " << it->getTestCaseInfo().lineInfo << std::endl; | ||||
|                 exit(1); | ||||
|             if( !prev.second ) { | ||||
|                 std::ostringstream ss; | ||||
|  | ||||
|                 ss  << Colour( Colour::Red ) | ||||
|                     << "error: TEST_CASE( \"" << it->name << "\" ) already defined.\n" | ||||
|                     << "\tFirst seen at " << prev.first->getTestCaseInfo().lineInfo << "\n" | ||||
|                     << "\tRedefined at " << it->getTestCaseInfo().lineInfo << std::endl; | ||||
|  | ||||
|                 throw std::runtime_error(ss.str()); | ||||
|             } | ||||
|         } | ||||
|     } | ||||
| @@ -7545,7 +7547,7 @@ namespace Catch { | ||||
|         return os; | ||||
|     } | ||||
|  | ||||
|     Version libraryVersion( 1, 5, 2, "", 0 ); | ||||
|     Version libraryVersion( 1, 5, 3, "", 0 ); | ||||
|  | ||||
| } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Phil Nash
					Phil Nash