mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 10:13:51 +01:00
70bb3a40de
* feat(Foundation): PIDFile and ProcessRunner #4064 * feat(Thread): optional signal blocking on POSIX #2978 * fix(ProcessRunner):remove logger, code enhancement #4225 * feat(Foundation): add PIDFile and ProcessRunner Tests #4064 * fix(Foundation): failing ProcessRunner Test #4064 * fix(PIDFile): remove append argument #4064 * remove Windows TODO from ProcessRunner #4064 * feat(ProcessRunnerTest): add line to checkTimeout #4064 * fix(ProcessRunner): add done flag to run() #4064 * fix(ProcessRunnerTest): add missing pidFile argument #4064 * chore(ProcessRunner): remove comments #4064 * fix(ProcessRunner): add runCount flag #4064 * fix(test): SharedLibrary and Class tests paths * fix(ProcessRunner): thread sanitizer reported data races #4064 * fix(build): pass env var to testrunner #4064 * chore(PIDFile): remove ; in comments #4064 * feat(ProcessRunner): add Win argument format #4064 * fix(Tests): add ProcessRunnerTest to vcxproj #4064 * fix(Tests): change path to TestApp #4064 * feat(Tests): windows processrunner tests #4064 * fix(Tests): duplicate ProcessRunnerTest in TestSuite vcxproj #4064 * fix(CodeQL): sw declaration hides variable #4064 * fix test binaries path for cmake * fix(Build): missing include/PIDFile.h buildWin #4064 * fix(Build): add PocoFoundation depend in buildWin #4064 * feat(ProcessRunner): test process launching multiple threads #2976 --------- Co-authored-by: Pavle <pavle@debian-gnu-linux-11.localdomain> Co-authored-by: Alex Fabijanic <alex@pocoproject.org>
26 lines
672 B
Plaintext
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
|