diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-12-22 19:56:06 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-12-22 21:53:13 +0100 |
commit | fa957f8dc9990e4479e4d2af46a63ceae89cd39b (patch) | |
tree | a02c57dafea439d8206a88b06798be218cf53efe | |
parent | 9286b1cbce78d7e427135ba8b5e8f56c9a611a81 (diff) |
test: Add race:SendZmqMessage tsan suppression
-rw-r--r-- | test/sanitizer_suppressions/tsan | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/sanitizer_suppressions/tsan b/test/sanitizer_suppressions/tsan index 995af8dba9..1fc82244bf 100644 --- a/test/sanitizer_suppressions/tsan +++ b/test/sanitizer_suppressions/tsan @@ -1,5 +1,7 @@ # ThreadSanitizer suppressions # ============================ +# +# https://github.com/google/sanitizers/wiki/ThreadSanitizerSuppressions # double locks (TODO fix) mutex:g_genesis_wait_mutex @@ -49,5 +51,14 @@ deadlock:src/qt/test/* deadlock:libdb race:libzmq +# Intermittent issues +# ------------------- +# +# Suppressions that follow might only happen intermittently, thus they are not +# reproducible. Make sure to include a link to a full trace. + +# https://github.com/bitcoin/bitcoin/issues/20618 +race:CZMQAbstractPublishNotifier::SendZmqMessage + # https://github.com/bitcoin/bitcoin/pull/20218, https://github.com/bitcoin/bitcoin/pull/20745 race:epoll_ctl |