mirror of
https://github.com/milvus-io/milvus.git
synced 2026-07-21 02:05:41 +00:00
issue: #47809 --------- Signed-off-by: xiaofanluan <xiaofan.luan@zilliz.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
583 B
Plaintext
13 lines
583 B
Plaintext
# LeakSanitizer suppressions for Milvus C++ unit tests
|
|
#
|
|
# These suppress known false positives caused by C++ runtime exception
|
|
# object caching in uninstrumented shared libraries (protobuf, abseil,
|
|
# grpc, etc.). The exception objects are properly caught and handled
|
|
# during execution, but their thread-local caches appear as leaks
|
|
# at program exit because LeakSanitizer cannot track allocations
|
|
# across shared library boundaries without frame pointers.
|
|
#
|
|
# See: https://github.com/google/sanitizers/wiki/AddressSanitizerLeakSanitizer#suppressions
|
|
|
|
leak:__cxa_allocate_exception
|