Small cleanup of self tests

This commit is contained in:
Martin Hořeňovský 2019-08-04 13:50:25 +02:00
parent 7dc7d77af2
commit 3701c2e2e6
No known key found for this signature in database
GPG key ID: DE48307B8B0D381A
8 changed files with 82 additions and 73 deletions

View file

@ -440,12 +440,6 @@ TEST_CASE( "long long" ) {
REQUIRE( l == std::numeric_limits<long long>::max() );
}
//TEST_CASE( "Divide by Zero signal handler", "[.][sig]" ) {
// int i = 0;
// int x = 10/i; // This should cause the signal to fire
// CHECK( x == 0 );
//}
TEST_CASE( "This test 'should' fail but doesn't", "[.][failing][!shouldfail]" ) {
SUCCEED( "oops!" );
}