Ignore tests from $POCO_BASE/cppignore.lnx

This commit is contained in:
Francis ANDRE 2019-12-19 10:02:52 +01:00 committed by GitHub
parent e11028e1b9
commit d40a6fafd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,6 +60,7 @@ if [ "$OSNAME" = "" ] ; then
fi
BINDIR="bin/$OSNAME/$OSARCH/"
IGNORE="-ignore $POCO_BASE/cppignore.lnx"
runs=0
failures=0
@ -86,7 +87,7 @@ do
echo ""
runs=`expr $runs + 1`
sh -c "cd $POCO_BUILD/$comp/testsuite/$BINDIR && PATH=.:$PATH && LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH $TESTRUNNER $TESTRUNNERARGS"
sh -c "cd $POCO_BUILD/$comp/testsuite/$BINDIR && PATH=.:$PATH && LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH $TESTRUNNER $IGNORE $TESTRUNNERARGS"
if [ $? -ne 0 ] ; then
failures=`expr $failures + 1`
failedTests="$failedTests $comp"