Define sanitizer callbacks that fail tests when triggered.
Chaos Ci / test (push) Successful in 3m1s
Chaos Ci / benchmark (push) Successful in 1m49s

This commit is contained in:
hashlag
2026-08-03 01:46:21 +03:00
parent 88bcbb5514
commit 2323020714
2 changed files with 23 additions and 1 deletions
+2 -1
View File
@@ -11,7 +11,8 @@ FetchContent_Declare(
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
FetchContent_MakeAvailable(googletest)
set(ChaosTests_SOURCE Hash/Md4HasherTests.cpp
set(ChaosTests_SOURCE SanCallbacks.cpp
Hash/Md4HasherTests.cpp
Hash/Md5HasherTests.cpp
Hash/Sha1HasherTests.cpp
Mac/HmacTests.cpp
+21
View File
@@ -0,0 +1,21 @@
#include <gtest/gtest.h>
extern "C"
{
void __ubsan_on_report()
{
FAIL() << "Encountered an undefined behavior sanitizer error";
}
void __asan_on_error()
{
FAIL() << "Encountered an address sanitizer error";
}
void __tsan_on_report()
{
FAIL() << "Encountered a thread sanitizer error";
}
} // extern "C"