mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-03 16:56:48 +00:00
This change moves the sanitizer runtime options out to dedicated files, such that they can be used in multiple places (CI, local runs) without any need to rewrite them.
12 lines
576 B
Plaintext
12 lines
576 B
Plaintext
# The idea is to empty this file gradually by fixing the underlying issues and removing suppressions.
|
|
#
|
|
# ASAN_OPTIONS="print_stacktrace=1:detect_container_overflow=0:suppressions=sanitizers/suppressions/asan.supp:halt_on_error=0"
|
|
|
|
# Suppress false positive stack-buffer errors in thread stack allocation
|
|
# Related to ASan's __asan_handle_no_return warnings (github.com/google/sanitizers/issues/189)
|
|
# These occur during multi-threaded test initialization on macOS
|
|
interceptor_name:memcpy
|
|
interceptor_name:__bzero
|
|
interceptor_name:__asan_memset
|
|
interceptor_name:__asan_memcpy
|