mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
[ntcore] NetworkTables 4 (#3217)
This commit is contained in:
@@ -19,3 +19,15 @@ int main(int argc, char** argv) {
|
||||
int ret = RUN_ALL_TESTS();
|
||||
return ret;
|
||||
}
|
||||
|
||||
extern "C" {
|
||||
void __ubsan_on_report(void) {
|
||||
FAIL() << "Encountered an undefined behavior sanitizer error";
|
||||
}
|
||||
void __asan_on_error(void) {
|
||||
FAIL() << "Encountered an address sanitizer error";
|
||||
}
|
||||
void __tsan_on_report(void) {
|
||||
FAIL() << "Encountered a thread sanitizer error";
|
||||
}
|
||||
} // extern "C"
|
||||
|
||||
Reference in New Issue
Block a user