From 3629a896366b188871c471b41a74b2f78131e8b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnter=20Obiltschnig?= Date: Sat, 8 Feb 2020 10:49:42 +0100 Subject: [PATCH] fix tests --- cppignore.lnx | 1 + travis/runtests.sh | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/cppignore.lnx b/cppignore.lnx index 85a2b5411..95244721e 100644 --- a/cppignore.lnx +++ b/cppignore.lnx @@ -14,3 +14,4 @@ N7CppUnit10TestCallerI9TimerTestEE.testTimer N7CppUnit10TestCallerI15FileChannelTestEE.testPurgeAge N7CppUnit10TestCallerI8FileTestEE.testFileAttributes2 N7CppUnit10TestCallerI14ICMPSocketTestEE.testSendToReceiveFrom +N7CppUnit10TestCallerI22HTTPSClientSessionTestEE.testCachedSession diff --git a/travis/runtests.sh b/travis/runtests.sh index 560f9ad96..2e2c08dfb 100755 --- a/travis/runtests.sh +++ b/travis/runtests.sh @@ -1,6 +1,8 @@ set -ev +osname=`uname` +osarch=`uname -m` export POCO_BASE=`pwd` export EXCLUDE_TESTS="Data/MySQL Data/ODBC MongoDB PDF" export PATH=$PATH:. -export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:. +export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:.:$POCO_BASE/lib/$osname/$osarch build/script/runtests.sh