mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
23a5df7d54
c82336c493b112160d781974d4066fcb956b85f6 Remove references to CreateWalletFromFile (fanquake) Pull request description: `CWallet::CreateWalletFromFile()` was removed in 8b5e7297c02f3100a9cb27bfe206e3fc617ec173 but these references remain. ACKs for top commit: hebasto: ACK c82336c493b112160d781974d4066fcb956b85f6 Tree-SHA512: 3dd50fe0cd5a60bbc96d265107d4739f3e08f943435f3772038963ac4be9e4a87a863412ac0d571226ea66d71550b17b52f01b9d46a6282d49feae1508fd682e
77 lines
1.9 KiB
Plaintext
77 lines
1.9 KiB
Plaintext
# ThreadSanitizer suppressions
|
|
# ============================
|
|
#
|
|
# https://github.com/google/sanitizers/wiki/ThreadSanitizerSuppressions
|
|
|
|
# Data races from zmq namespace
|
|
race:zmq::*
|
|
|
|
# race (TODO fix)
|
|
race:validation_chainstatemanager_tests
|
|
|
|
# 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:zmq::*
|
|
race:bitcoin-qt
|
|
# deadlock (TODO fix)
|
|
deadlock:CConnman::ForNode
|
|
deadlock:CConnman::GetNodeStats
|
|
deadlock:CChainState::ConnectTip
|
|
deadlock:UpdateTip
|
|
deadlock:wallet_tests::CreateWallet
|
|
|
|
# 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
|
|
|
|
# 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::*
|