Cleaned up the output a bit

- removed [!shouldfail] test from "green" path
- changed "spanner" to more descriptive text
This commit is contained in:
Phil Nash
2017-08-11 10:38:29 +01:00
parent 684cbb2631
commit df5c31bb19
7 changed files with 14 additions and 10 deletions

View File

@@ -353,7 +353,7 @@ static int f() {
return 1;
}
TEST_CASE( "#835 -- errno should not be touched by Catch", "[!shouldfail]" ) {
TEST_CASE( "#835 -- errno should not be touched by Catch", "[.][failing][!shouldfail]" ) {
errno = 1;
CHECK(f() == 0);
REQUIRE(errno == 1); // Check that f() doesn't touch errno.