From 6c23a6582b444f7be0ac65835dda8c6247609b4a Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Tue, 24 Jan 2017 09:53:04 +0000 Subject: [PATCH] Mark CHECKed-throw test as [failing] --- projects/SelfTest/ExceptionTests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/SelfTest/ExceptionTests.cpp b/projects/SelfTest/ExceptionTests.cpp index affac4b5..4bcfb7ac 100644 --- a/projects/SelfTest/ExceptionTests.cpp +++ b/projects/SelfTest/ExceptionTests.cpp @@ -73,7 +73,7 @@ TEST_CASE( "When unchecked exceptions are thrown during a REQUIRE the test shoul FAIL( "This should never happen" ); } -TEST_CASE( "When unchecked exceptions are thrown during a CHECK the test should continue", "[!throws]" ) +TEST_CASE( "When unchecked exceptions are thrown during a CHECK the test should continue", "[.][failing][!throws]" ) { try { CHECK(thisThrows() == 0);