mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
3231ad2255
3e1571285f4a0edf59d51bbdeee028be3038b6dc Update TSan suppressions (Hennadii Stepanov) Pull request description: It seems possible now to drop some TSan suppressions. Top commit has no ACKs. Tree-SHA512: 94518fd2f3a7168b2989424de0696e42c8f509b833aafbc7e75f4c1180a0b8d9a47f43c50d06b03b26a924643afe86274b2062c9d456c17a68576d19566ed66f
70 lines
1.8 KiB
Plaintext
70 lines
1.8 KiB
Plaintext
# ThreadSanitizer suppressions
|
|
# ============================
|
|
#
|
|
# https://github.com/google/sanitizers/wiki/ThreadSanitizerSuppressions
|
|
|
|
# Data races from zmq namespace
|
|
race:zmq::*
|
|
|
|
# double locks (TODO fix)
|
|
mutex:g_genesis_wait_mutex
|
|
mutex:Interrupt
|
|
mutex:CThreadInterrupt
|
|
mutex:CConnman::Interrupt
|
|
mutex:CConnman::WakeMessageHandler
|
|
mutex:CConnman::ThreadOpenConnections
|
|
mutex:CConnman::ThreadOpenAddedConnections
|
|
mutex:CConnman::SocketHandler
|
|
mutex:UpdateTip
|
|
mutex:PeerLogicValidation::UpdatedBlockTip
|
|
mutex:g_best_block_mutex
|
|
# race (TODO fix)
|
|
race:CConnman::WakeMessageHandler
|
|
race:CConnman::ThreadMessageHandler
|
|
race:fHaveGenesis
|
|
race:ProcessNewBlock
|
|
race:ThreadImport
|
|
race:LoadWallet
|
|
race:WalletBatch::WriteHDChain
|
|
race:BerkeleyBatch
|
|
race:BerkeleyDatabase
|
|
race:DatabaseBatch
|
|
race:leveldb::DBImpl::DeleteObsoleteFiles
|
|
race:zmq::*
|
|
race:bitcoin-qt
|
|
# deadlock (TODO fix)
|
|
deadlock:CChainState::ConnectTip
|
|
deadlock:wallet_tests::CreateWallet
|
|
|
|
# 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
|
|
|
|
# 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
|
|
|
|
# https://github.com/bitcoin/bitcoin/issues/23366
|
|
race:std::__1::ios_base::*
|