Merge pull request #2263 from Kampbell/poco-1.9.1

Poco 1.9.1
This commit is contained in:
zosrothko 2018-04-04 10:26:17 +02:00 committed by GitHub
commit 200a890434
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 32 additions and 9 deletions

8
.gitignore vendored
View File

@ -18,11 +18,13 @@
# Gradle #
##########
!gradle.properties
!settings.gradle
!build.gradle
!build.gradle.win
.gradle/
**/guild/
**/gradle/
**/options.txt
**/output.txt
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 \
"

View File

@ -69,13 +69,9 @@ RELEASEOPT_LINK =
#
# System Specific Flags
#
SYSFLAGS = -D_XOPEN_SOURCE=500
# give visibility of old BSD typedef like u_short, u_int, u_long...
# used in some networking system includes, needed when using PocoNet
SYSFLAGS += -D__BSD_VISIBLE
SYSFLAGS = -D_GNU_SOURCE
#
#
# System Specific Libraries
#