tsan raw

   1  # ThreadSanitizer suppressions
   2  # ============================
   3  #
   4  # https://github.com/google/sanitizers/wiki/ThreadSanitizerSuppressions
   5  
   6  # Intentional deadlock in tests
   7  deadlock:sync_tests::potential_deadlock_detected
   8  
   9  # Wildcard for all of the gui
  10  race:bitcoin-qt
  11  race:src/qt/test/*
  12  deadlock:src/qt/test/*
  13  
  14  # External libraries
  15  # ------------------
  16  race:libzmq
  17  
  18  # To reproduce, build from depends with CFLAGS='-O0 -g' CXXFLAGS='-O0 -g'
  19  race:zmq::*
  20  
  21  # Intermittent issues
  22  # -------------------
  23  #
  24  # Suppressions that follow might only happen intermittently, thus they are not
  25  # reproducible. Make sure to include a link to a full trace.
  26  
  27  # https://github.com/bitcoin/bitcoin/issues/20618
  28  race:CZMQAbstractPublishNotifier::SendZmqMessage
  29  
  30  # https://github.com/bitcoin/bitcoin/pull/27498#issuecomment-1517410478
  31  race:epoll_ctl
  32  
  33  # https://github.com/bitcoin/bitcoin/issues/23366
  34  race:std::__1::ios_base::*
  35