mirror of https://github.com/bitcoin/bitcoin
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.1 KiB
44 lines
1.1 KiB
# ThreadSanitizer suppressions
|
|
# ============================
|
|
#
|
|
# https://github.com/google/sanitizers/wiki/ThreadSanitizerSuppressions
|
|
|
|
# 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
|
|
|
|
# Intentional deadlock in tests
|
|
deadlock:sync_tests::potential_deadlock_detected
|
|
|
|
# Wildcard for all gui tests, should be replaced with non-wildcard suppressions
|
|
race:src/qt/test/*
|
|
deadlock:src/qt/test/*
|
|
|
|
# Race in src/test/main.cpp
|
|
# Can be removed once upgraded to boost test 1.74 in depends
|
|
race:validation_chainstatemanager_tests
|
|
|
|
# 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
|