From c5ffd2e3f0beb65d0f0f8de1a54a0ee7e1f50f86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Wed, 22 Feb 2017 13:29:17 +0100 Subject: [PATCH] Fixed up Automake reporter --- include/reporters/catch_reporter_automake.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/reporters/catch_reporter_automake.hpp b/include/reporters/catch_reporter_automake.hpp index b18396b5..c267d8a9 100644 --- a/include/reporters/catch_reporter_automake.hpp +++ b/include/reporters/catch_reporter_automake.hpp @@ -21,13 +21,15 @@ namespace Catch { : StreamingReporterBase( _config ) {} + virtual ~AutomakeReporter(); + static std::string getDescription() { return "Reports test results in the format of Automake .trs files"; } virtual void assertionStarting( AssertionInfo const& ) CATCH_OVERRIDE {} - virtual bool assertionEnded( AssertionStats const& _assertionStats ) CATCH_OVERRIDE { return true; } + virtual bool assertionEnded( AssertionStats const& /*_assertionStats*/ ) CATCH_OVERRIDE { return true; } virtual void testCaseEnded( TestCaseStats const& _testCaseStats ) CATCH_OVERRIDE { // Possible values to emit are PASS, XFAIL, SKIP, FAIL, XPASS and ERROR.