diff options
Diffstat (limited to '3rdparty/catch/include/internal/catch_config.hpp')
-rw-r--r-- | 3rdparty/catch/include/internal/catch_config.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/3rdparty/catch/include/internal/catch_config.hpp b/3rdparty/catch/include/internal/catch_config.hpp index 72b0f6c7723..7d7887aaf51 100644 --- a/3rdparty/catch/include/internal/catch_config.hpp +++ b/3rdparty/catch/include/internal/catch_config.hpp @@ -74,6 +74,7 @@ namespace Catch { std::vector<std::string> reporterNames; std::vector<std::string> testsOrTags; + std::vector<std::string> sectionsToRun; }; @@ -115,7 +116,8 @@ namespace Catch { bool shouldDebugBreak() const { return m_data.shouldDebugBreak; } - std::vector<std::string> getReporterNames() const { return m_data.reporterNames; } + std::vector<std::string> const& getReporterNames() const { return m_data.reporterNames; } + std::vector<std::string> const& getSectionsToRun() const CATCH_OVERRIDE { return m_data.sectionsToRun; } int abortAfter() const { return m_data.abortAfter; } |