1
0
mirror of https://github.com/pocoproject/poco.git synced 2024-12-14 02:57:45 +01:00
poco/tsan.suppress
Pavle Dragisic 70bb3a40de
Add ProcessRunner and PIDFile ()
* feat(Foundation): PIDFile and ProcessRunner 
* feat(Thread): optional signal blocking on POSIX 
* fix(ProcessRunner):remove logger, code enhancement 
* feat(Foundation): add PIDFile and ProcessRunner Tests 
* fix(Foundation): failing ProcessRunner Test 
* fix(PIDFile): remove append argument 
* remove Windows TODO from ProcessRunner 
* feat(ProcessRunnerTest): add line to checkTimeout 
* fix(ProcessRunner): add done flag to run() 
* fix(ProcessRunnerTest): add missing pidFile argument 
* chore(ProcessRunner): remove comments 
* fix(ProcessRunner): add runCount flag 
* fix(test): SharedLibrary and Class tests paths
* fix(ProcessRunner): thread sanitizer reported data races 
* fix(build): pass env var to testrunner 
* chore(PIDFile): remove ; in comments 
* feat(ProcessRunner): add Win argument format 
* fix(Tests): add ProcessRunnerTest to vcxproj 
* fix(Tests): change path to TestApp 
* feat(Tests): windows processrunner tests 
* fix(Tests): duplicate  ProcessRunnerTest in TestSuite vcxproj  
* fix(CodeQL): sw declaration hides variable  
* fix test binaries path for cmake
* fix(Build): missing include/PIDFile.h buildWin 
* fix(Build): add PocoFoundation depend in buildWin 
* feat(ProcessRunner): test process launching multiple threads 

---------

Co-authored-by: Pavle <pavle@debian-gnu-linux-11.localdomain>
Co-authored-by: Alex Fabijanic <alex@pocoproject.org>
2023-11-24 20:22:01 +01:00

26 lines
672 B
Plaintext

# Suppressed thread sanitizer tests
#
# https://github.com/google/sanitizers/wiki/ThreadSanitizerSuppressions
#
# To apply:
# export TSAN_OPTIONS="suppressions=$POCO_BASE/tsan.suppress,second_deadlock_stack=1"
##############
# Suppressions:
##############
#
# Foundation
#
# ActiveDispatcher false positives
# strictly speaking, yes - ActiveDispatcher::run() is started
# in a thread before the inheriting object is fully constructed;
# however, nothing can happen there before some events are
# enqueued, which can't happen until after the inheriting object
# is fully constructed
race:ActiveDispatcherTest
race:ArchiveStrategy::moveFile
race:ThreadTest::testNotJoin