This commit is contained in:
Phil Nash 2014-05-20 19:02:37 +01:00
parent d12c00666a
commit 48fac9cf01
3 changed files with 23 additions and 22 deletions

View File

@ -1,6 +1,6 @@
![catch logo](catch-logo-small.png) ![catch logo](catch-logo-small.png)
*v1.0 build 46 (master branch)* *v1.0 build 47 (master branch)*
Build status (on Travis CI) [![Build Status](https://travis-ci.org/philsquared/Catch.png)](https://travis-ci.org/philsquared/Catch) Build status (on Travis CI) [![Build Status](https://travis-ci.org/philsquared/Catch.png)](https://travis-ci.org/philsquared/Catch)

View File

@ -13,7 +13,7 @@
namespace Catch { namespace Catch {
// These numbers are maintained by a script // These numbers are maintained by a script
Version libraryVersion( 1, 0, 46, "master" ); Version libraryVersion( 1, 0, 47, "master" );
} }
#endif // TWOBLUECUBES_CATCH_VERSION_HPP_INCLUDED #endif // TWOBLUECUBES_CATCH_VERSION_HPP_INCLUDED

View File

@ -1,6 +1,6 @@
/* /*
* CATCH v1.0 build 46 (master branch) * CATCH v1.0 build 47 (master branch)
* Generated: 2014-05-20 18:49:44.156173 * Generated: 2014-05-20 19:02:15.946806
* ---------------------------------------------------------- * ----------------------------------------------------------
* This file has been merged from multiple headers. Please don't edit it directly * This file has been merged from multiple headers. Please don't edit it directly
* Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved. * Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved.
@ -4657,15 +4657,6 @@ namespace Catch {
return matchedTests; return matchedTests;
} }
inline std::size_t listTags( Config const& config ) {
TestSpec testSpec = config.testSpec();
if( config.testSpec().hasFilters() )
std::cout << "Tags for matching test cases:\n";
else {
std::cout << "All available tags:\n";
testSpec = TestSpecParser().parse( "*" ).testSpec();
}
struct TagInfo { struct TagInfo {
TagInfo() : count ( 0 ) {} TagInfo() : count ( 0 ) {}
void add( std::string const& spelling ) { void add( std::string const& spelling ) {
@ -4683,6 +4674,16 @@ namespace Catch {
std::set<std::string> spellings; std::set<std::string> spellings;
std::size_t count; std::size_t count;
}; };
inline std::size_t listTags( Config const& config ) {
TestSpec testSpec = config.testSpec();
if( config.testSpec().hasFilters() )
std::cout << "Tags for matching test cases:\n";
else {
std::cout << "All available tags:\n";
testSpec = TestSpecParser().parse( "*" ).testSpec();
}
std::map<std::string, TagInfo> tagCounts; std::map<std::string, TagInfo> tagCounts;
std::vector<TestCase> matchedTestCases; std::vector<TestCase> matchedTestCases;
@ -6480,7 +6481,7 @@ namespace Catch {
namespace Catch { namespace Catch {
// These numbers are maintained by a script // These numbers are maintained by a script
Version libraryVersion( 1, 0, 46, "master" ); Version libraryVersion( 1, 0, 47, "master" );
} }
// #included from: catch_message.hpp // #included from: catch_message.hpp