--extra-info -> --list-extra-info, behaves like other --list-* flags

This commit is contained in:
Martin Hořeňovský
2017-06-22 19:27:17 +02:00
parent 616f7235ef
commit 07c6bfc3b9
3 changed files with 10 additions and 10 deletions

View File

@@ -31,7 +31,7 @@ namespace Catch {
listTags( false ),
listReporters( false ),
listTestNamesOnly( false ),
extraInfo( false ),
listExtraInfo( false ),
showSuccessfulTests( false ),
shouldDebugBreak( false ),
noThrow( false ),
@@ -51,7 +51,7 @@ namespace Catch {
bool listTags;
bool listReporters;
bool listTestNamesOnly;
bool extraInfo;
bool listExtraInfo;
bool showSuccessfulTests;
bool shouldDebugBreak;
@@ -111,7 +111,7 @@ namespace Catch {
bool listTestNamesOnly() const { return m_data.listTestNamesOnly; }
bool listTags() const { return m_data.listTags; }
bool listReporters() const { return m_data.listReporters; }
bool extraInfo() const { return m_data.extraInfo; }
bool listExtraInfo() const { return m_data.listExtraInfo; }
std::string getProcessName() const { return m_data.processName; }