mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
f73fce7782
Make fMixing atomic as it has concurrent access Add tsan suppression for zmq namespace Suppress deadlock false positive in ConnectTip Switch ubsan target to linux32 Add new test job for linux64_cxx17 target without any sanitizers Increase rpc time out for block reward reallocation test Fix heap use after free in CConnman::GetExtraOutboundCount() Different builds for linux32 and linux64 tsan and ubsan Increase timeout for llmq_signing functional test
28 lines
697 B
Plaintext
28 lines
697 B
Plaintext
# ThreadSanitizer suppressions
|
|
# ============================
|
|
|
|
# Data races from zmq namespace
|
|
race:zmq::*
|
|
|
|
# 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
|
|
|
|
# Wildcard for all gui tests, should be replaced with non-wildcard suppressions
|
|
race:src/qt/test/*
|
|
deadlock:src/qt/test/*
|
|
|
|
# WIP: Unidentified suppressions to run the functional tests
|
|
#race:zmqpublishnotifier.cpp
|
|
#
|
|
#deadlock:CreateWalletFromFile
|
|
#deadlock:importprivkey
|
|
#deadlock:walletdb.h
|
|
#deadlock:walletdb.cpp
|
|
#deadlock:wallet/db.cpp
|