mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
e9450a8b36
fadea0bf371a38620b7f1f93f87d1da76d3314e0 Revert "test: Add tsan supp for leveldb::DBImpl::DeleteObsoleteFiles" (MarcoFalke) fadbd9988590ba94e3fd2d87d773f3b09d73ef46 test: Remove spurious double lock tsan suppressions by bumping to clang-12 (MarcoFalke) Pull request description: The double lock warnings appeared in #19041, but they didn't make any sense. Also, our sync module would detect double locks, if there were any. Bumping to clang-12 allows us to remove the spurious suppressions needed to run the tests, so do that. ACKs for top commit: practicalswift: cr ACK fadea0bf371a38620b7f1f93f87d1da76d3314e0 assuming CI passes and more specifically that newer Clang agrees that these TSan suppressions are no longer needed. Tree-SHA512: c411221a4b74d0af6ca8d686639b4f40b41c15906ccbb6647e8d569d6ab088264faafe075e1ac9523d5c0024b85f15a597bb3eedc7f07d4f5816245f75cfc08b
52 lines
1.3 KiB
Plaintext
52 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
|
|
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::*
|