mirror of
https://github.com/catchorg/Catch2.git
synced 2025-11-22 21:19:32 +01:00
Cleaned up the output a bit
- removed [!shouldfail] test from "green" path - changed "spanner" to more descriptive text
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user