Remove useless test

This commit is contained in:
Martin Hořeňovský 2019-06-22 15:31:37 +02:00
parent 0685216175
commit 74e0e737a6
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
1 changed files with 0 additions and 6 deletions

View File

@ -390,12 +390,6 @@ TEST_CASE("Commas in various macros are allowed") {
}
}
TEST_CASE( "null deref", "[.][failing][!nonportable]" ) {
CHECK( false );
int *x = NULL;
*x = 1;
}
TEST_CASE( "non-copyable objects", "[.][failing]" ) {
// Thanks to Agustin Bergé (@k-ballo on the cpplang Slack) for raising this
std::type_info const& ti = typeid(int);