mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-07 09:48:04 +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>
112 lines
2.5 KiB
Bash
Executable File
112 lines
2.5 KiB
Bash
Executable File
#! /bin/sh
|
|
#
|
|
# A script for running the POCO testsuites.
|
|
#
|
|
# usage: runtests [component [test] ]
|
|
#
|
|
# If the environment variable EXCLUDE_TESTS is set, containing
|
|
# a space-separated list of project names (as found in the
|
|
# components file), these tests will be skipped.
|
|
#
|
|
# Cygwin specific setup.
|
|
# ----------------------
|
|
# On Cygwin, Unix IPC are provided by a separate process daemon
|
|
# named cygserver, which should be started once before running any
|
|
# test from Foundation.
|
|
# 1/ Open a separate Cygwin terminal with Administrator privilege
|
|
# 2/ run the command: cygserver-configure
|
|
# 3/ Start the cygserver: nohup /usr/sbin/cygserver &
|
|
# 4/ close the separate terminal
|
|
# 5/ run the Foundation tests: build/script/runtests.sh Foundation
|
|
#
|
|
|
|
if [ "$POCO_BASE" = "" ] ; then
|
|
POCO_BASE=$(pwd)
|
|
fi
|
|
|
|
if [ "$POCO_BUILD" = "" ] ; then
|
|
POCO_BUILD=$POCO_BASE
|
|
fi
|
|
|
|
TESTRUNNER=./testrunner
|
|
|
|
if [ "$1" = "" ] ; then
|
|
components=$(cat "$POCO_BASE"/components)
|
|
else
|
|
components=$1
|
|
fi
|
|
|
|
if [ "$2" = "" ] ; then
|
|
TESTRUNNERARGS=-all
|
|
else
|
|
TESTRUNNERARGS=$2
|
|
fi
|
|
|
|
if [ "$OSARCH" = "" ] ; then
|
|
OSARCH=$(uname -m | tr ' /' _-)
|
|
fi
|
|
|
|
if [ "$OSNAME" = "" ] ; then
|
|
OSNAME=$(uname)
|
|
case $OSNAME in
|
|
CYGWIN*)
|
|
OSNAME=CYGWIN
|
|
TESTRUNNER=$TESTRUNNER.exe
|
|
PATH=$POCO_BUILD/lib/$OSNAME/$OSARCH:$PATH
|
|
;;
|
|
MINGW*)
|
|
OSNAME=MinGW ;;
|
|
esac
|
|
fi
|
|
|
|
BINDIR="bin/$OSNAME/$OSARCH/"
|
|
IGNORE="-ignore $POCO_BASE/cppignore.lnx"
|
|
|
|
runs=0
|
|
failures=0
|
|
failedTests=""
|
|
status=0
|
|
|
|
for comp in $components ;
|
|
do
|
|
excluded=0
|
|
for excl in $EXCLUDE_TESTS ;
|
|
do
|
|
if [ "$excl" = "$comp" ] ; then
|
|
excluded=1
|
|
fi
|
|
done
|
|
if [ $excluded -eq 0 ] ; then
|
|
if [ -d "$POCO_BUILD/$comp/testsuite/$BINDIR" ] ; then
|
|
if [ -x "$POCO_BUILD/$comp/testsuite/$BINDIR/$TESTRUNNER" ] ; then
|
|
echo ""
|
|
echo ""
|
|
echo "****************************************"
|
|
echo "*** $OSNAME $OSARCH $comp"
|
|
echo "****************************************"
|
|
echo ""
|
|
|
|
runs=$((runs + 1))
|
|
if ! sh -c "export POCO_BASE='$POCO_BASE'; export OSNAME='$OSNAME'; export OSARCH='$OSARCH'; cd $POCO_BUILD/$comp/testsuite/$BINDIR && PATH=.:$PATH && LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH $TESTRUNNER $IGNORE $TESTRUNNERARGS";
|
|
then
|
|
failures=$((failures + 1))
|
|
failedTests="$failedTests $comp"
|
|
status=1
|
|
fi
|
|
fi
|
|
fi
|
|
fi
|
|
done
|
|
|
|
echo ""
|
|
echo ""
|
|
echo "$runs runs, $failures failed."
|
|
echo ""
|
|
for test in $failedTests ;
|
|
do
|
|
echo "Failed: $test"
|
|
done
|
|
echo ""
|
|
|
|
exit $status
|