CrasingTestsAreReportedAsFailures no longer core dumps on Clang Release

Found that Crashing tests at some point in Clang
history were actually caught but testing on
Clang 6.0 and Clang 7.0 this is not the case.
So added Clang to the list of compilers that
don't run this tests.  Noted that several
other Pull Requests were failing for the same
reason.
This commit is contained in:
Dan Huantes 2019-08-15 08:26:41 -05:00
parent bdef2bdd62
commit 2423fcac76

View file

@ -72,7 +72,7 @@ namespace {
CHECK_EQUAL(1, results.GetFailureCount()); CHECK_EQUAL(1, results.GetFailureCount());
} }
#if !defined(UNITTEST_MINGW) && !defined(UNITTEST_WIN32) #if !defined(UNITTEST_MINGW) && !defined(UNITTEST_WIN32) && !defined(__clang__)
// Skip this test in debug because some debuggers don't like it. // Skip this test in debug because some debuggers don't like it.
#if defined(NDEBUG) #if defined(NDEBUG)
TEST(CrashingTestsAreReportedAsFailures) TEST(CrashingTestsAreReportedAsFailures)