mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
bef9631e99
f03a708c1190852862c2e3ade5ee01797f291dd4 doc, test: Document steps to reproduce TSan warning for `libdb` (Hennadii Stepanov) Pull request description: Requested [here](https://github.com/bitcoin/bitcoin/pull/27658#issuecomment-1547767101). ACKs for top commit: MarcoFalke: lgtm ACK f03a708c1190852862c2e3ade5ee01797f291dd4 Tree-SHA512: 0c61c05d75d074df0686502739341fdbef8dd5a2d2f6cdfdd85bd0014ac43efb6fab112ee66d8d0f33f8f4695aeffc12a05923181260d81511d4e4d53b7686f2
53 lines
1.3 KiB
Plaintext
53 lines
1.3 KiB
Plaintext
# ThreadSanitizer suppressions
|
|
# ============================
|
|
#
|
|
# https://github.com/google/sanitizers/wiki/ThreadSanitizerSuppressions
|
|
|
|
# Data races from zmq namespace
|
|
race:zmq::*
|
|
|
|
# race (TODO fix)
|
|
race:LoadWallet
|
|
race:WalletBatch::WriteHDChain
|
|
race:BerkeleyBatch
|
|
race:BerkeleyDatabase
|
|
race:DatabaseBatch
|
|
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
|
|
# https://github.com/bitcoin/bitcoin/pull/27658#issuecomment-1547639621
|
|
deadlock:libdb
|
|
race:libzmq
|
|
|
|
# Race in headers only Boost Test
|
|
race:std::__1::ios_base::flags
|
|
|
|
# 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/issues/23366
|
|
race:std::__1::ios_base::*
|