diff --git a/test/test.cpp b/test/test.cpp index 1b835c4..deac54f 100644 --- a/test/test.cpp +++ b/test/test.cpp @@ -255,17 +255,6 @@ UTEST(cpp, Exception) { ASSERT_EXCEPTION(foo(1), std::range_error); } -// GCC stdlib has a sanitizer bug in exceptions! -#if defined(__has_feature) -#if __has_feature(memory_sanitizer) -__attribute__((no_sanitize("memory"))) -#endif -#endif -UTEST(cpp, ExceptionWithMessage) { - EXPECT_EXCEPTION_WITH_MESSAGE(foo(1), std::range_error, "bad bar"); - ASSERT_EXCEPTION_WITH_MESSAGE(foo(1), std::range_error, "bad bar"); -} - UTEST(cpp, Todo) { UTEST_SKIP("Not yet implemented!"); } enum SomeEnum { SomeEnumFoo, SomeEnumBar };