Add appveyor directory for running test on Cygwin

This commit is contained in:
Francis ANDRE 2018-04-04 09:44:21 +02:00
parent 67f099a01a
commit c7ea486e31
4 changed files with 26 additions and 0 deletions

1
.gitignore vendored
View File

@ -23,6 +23,7 @@
!build.gradle
.gradle/
**/guild/
coverage/
# NuGet #
#########

View File

@ -0,0 +1,2 @@
export EXCLUDE_TESTS="Foundation Data/ODBC Data/MySQL Redis PDF"

View File

@ -0,0 +1,11 @@
#!/bin/bash
#
# set -ev
#
set -v
export POCO_BASE=`pwd`
export PATH=$PATH:.
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:.
source ./appveyor/ignored.sh
source ./appveyor/Cygwin/excluded.sh
build/script/runtests.sh

12
appveyor/ignored.sh Normal file
View File

@ -0,0 +1,12 @@
export CPPUNIT_IGNORE="\
N7CppUnit10TestCallerI8PathTestEE.testExpand \
N7CppUnit10TestCallerI13RawSocketTestEE.testEchoIPv4 \
N7CppUnit10TestCallerI13RawSocketTestEE.testSendToReceiveFromIPv4 \
N7CppUnit10TestCallerI14ICMPClientTestEE.testPing \
N7CppUnit10TestCallerI14ICMPClientTestEE.testBigPing \
N7CppUnit10TestCallerI22HTTPSClientSessionTestEE.testProxy \
N7CppUnit10TestCallerI22HTTPSStreamFactoryTestEE.testProxy \
N7CppUnit10TestCallerI19MulticastSocketTestEE.testMulticast \
N7CppUnit10TestCallerI13NTPClientTestEE.testTimeSync \
"