mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
12995edf33
d71e29e3e828bcb7b702fad728546351b8db5c01 qa: Correct epoll_ctl data race suppression (Hennadii Stepanov) Pull request description: Fixup of #20218. Comments must start from the beginning of the line. ACKs for top commit: MarcoFalke: review ACK d71e29e3e828bcb7b702fad728546351b8db5c01 Tree-SHA512: 4d8663ab505c347bcb62c2f118656e3343d5179825be0d1b86761ffdfdae1e7462002bf226a54dfc94be5885ce7f2633abaf70421ea35bf06eddad8e99fb9683
29 lines
679 B
Plaintext
29 lines
679 B
Plaintext
# ThreadSanitizer suppressions
|
|
# ============================
|
|
|
|
# Data races from zmq namespace
|
|
race:zmq::*
|
|
|
|
# WalletBatch (unidentified deadlock)
|
|
deadlock:WalletBatch
|
|
|
|
# deadlock false positive (see: https://github.com/dashpay/dash/pull/4563)
|
|
deadlock:CChainState::ConnectTip
|
|
|
|
# Intentional deadlock in tests
|
|
deadlock:sync_tests::potential_deadlock_detected
|
|
|
|
# fRPCRunning race
|
|
race:InterruptRPC
|
|
|
|
# Wildcard for all gui tests, should be replaced with non-wildcard suppressions
|
|
race:src/qt/test/*
|
|
deadlock:src/qt/test/*
|
|
|
|
# External libraries
|
|
deadlock:libdb
|
|
race:libzmq
|
|
|
|
# https://github.com/bitcoin/bitcoin/pull/20218, https://github.com/bitcoin/bitcoin/pull/20745
|
|
race:epoll_ctl
|