diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-04-05 16:26:26 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-04-05 16:23:13 +0200 |
commit | fa04eb7d78125f80f016d65ec7bab1933f6dea6f (patch) | |
tree | 5b84212232b25f3e0f151f086ef4992d365def31 | |
parent | 824eea5643a1a317c04efcbd30268e46b9165a3c (diff) |
test: Document why no symbol names can be used for suppressions
-rw-r--r-- | test/sanitizer_suppressions/ubsan | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/sanitizer_suppressions/ubsan b/test/sanitizer_suppressions/ubsan index eb80b3b90d..27885b094e 100644 --- a/test/sanitizer_suppressions/ubsan +++ b/test/sanitizer_suppressions/ubsan @@ -1,6 +1,10 @@ # -fsanitize=undefined suppressions # ================================= -signed-integer-overflow:CTxMemPool::PrioritiseTransaction +# This would be `signed-integer-overflow:CTxMemPool::PrioritiseTransaction`, +# however due to a bug in clang the symbolizer is disabled and thus no symbol +# names can be used. +# See https://github.com/google/sanitizers/issues/1364 +signed-integer-overflow:txmempool.cpp # -fsanitize=integer suppressions # =============================== |