tsan.suppress 672 B

12345678910111213141516171819202122232425
  1. # Suppressed thread sanitizer tests
  2. #
  3. # https://github.com/google/sanitizers/wiki/ThreadSanitizerSuppressions
  4. #
  5. # To apply:
  6. # export TSAN_OPTIONS="suppressions=$POCO_BASE/tsan.suppress,second_deadlock_stack=1"
  7. ##############
  8. # Suppressions:
  9. ##############
  10. #
  11. # Foundation
  12. #
  13. # ActiveDispatcher false positives
  14. # strictly speaking, yes - ActiveDispatcher::run() is started
  15. # in a thread before the inheriting object is fully constructed;
  16. # however, nothing can happen there before some events are
  17. # enqueued, which can't happen until after the inheriting object
  18. # is fully constructed
  19. race:ActiveDispatcherTest
  20. race:ArchiveStrategy::moveFile
  21. race:ThreadTest::testNotJoin