mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-26 18:11:29 +02:00
Merge remote-tracking branch 'pocoproject/develop' into IncreaseLoggerAdicity
This commit is contained in:
commit
620d9e109d
@ -68,17 +68,17 @@ inline CppUnitException::CppUnitException(const CppUnitException& other): except
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
inline CppUnitException::CppUnitException (const std::string& message, long lineNumber, const std::string& fileName): _message(message), _lineNumber(lineNumber), _data1lineNumber(CPPUNIT_UNKNOWNLINENUMBER), _data2lineNumber(CPPUNIT_UNKNOWNLINENUMBER), _fileName(fileName)
|
inline CppUnitException::CppUnitException (const std::string& message, long line, const std::string& rFileName): _message(message), _lineNumber(line), _data1lineNumber(CPPUNIT_UNKNOWNLINENUMBER), _data2lineNumber(CPPUNIT_UNKNOWNLINENUMBER), _fileName(rFileName)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
inline CppUnitException::CppUnitException (const std::string& message, long lineNumber, long data1lineNumber, const std::string& fileName): _message(message), _lineNumber(lineNumber), _data1lineNumber(data1lineNumber), _data2lineNumber(CPPUNIT_UNKNOWNLINENUMBER), _fileName(fileName)
|
inline CppUnitException::CppUnitException (const std::string& message, long line, long data1lineNumber, const std::string& rFileName): _message(message), _lineNumber(line), _data1lineNumber(data1lineNumber), _data2lineNumber(CPPUNIT_UNKNOWNLINENUMBER), _fileName(rFileName)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
inline CppUnitException::CppUnitException (const std::string& message, long lineNumber, long data1lineNumber, long data2lineNumber, const std::string& fileName): _message(message), _lineNumber(lineNumber), _data1lineNumber(data1lineNumber), _data2lineNumber(data2lineNumber), _fileName(fileName)
|
inline CppUnitException::CppUnitException (const std::string& message, long line, long data1lineNumber, long data2lineNumber, const std::string& rFileName): _message(message), _lineNumber(line), _data1lineNumber(data1lineNumber), _data2lineNumber(data2lineNumber), _fileName(rFileName)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -56,10 +56,10 @@ class TestCaller: public TestCase
|
|||||||
typedef void (Fixture::*TestMethod)();
|
typedef void (Fixture::*TestMethod)();
|
||||||
|
|
||||||
public:
|
public:
|
||||||
TestCaller(const std::string& name, TestMethod test):
|
TestCaller(const std::string& rName, TestMethod test):
|
||||||
TestCase(name),
|
TestCase(rName),
|
||||||
_test(test),
|
_test(test),
|
||||||
_fixture(new Fixture(name))
|
_fixture(new Fixture(rName))
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -173,7 +173,7 @@ protected:
|
|||||||
|
|
||||||
|
|
||||||
// Constructs a test case
|
// Constructs a test case
|
||||||
inline TestCase::TestCase(const std::string& name): _name (name)
|
inline TestCase::TestCase(const std::string& rName): _name (rName)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -52,7 +52,7 @@ protected:
|
|||||||
|
|
||||||
|
|
||||||
// Constructs a TestFailure with the given test and exception.
|
// Constructs a TestFailure with the given test and exception.
|
||||||
inline TestFailure::TestFailure(Test* failedTest, CppUnitException* thrownException): _failedTest(failedTest), _thrownException(thrownException)
|
inline TestFailure::TestFailure(Test* pFailedTest, CppUnitException* pThrownException): _failedTest(pFailedTest), _thrownException(pThrownException)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -103,8 +103,8 @@ void RecordSet::reset(const Statement& stmt)
|
|||||||
_totalRowCount = UNKNOWN_TOTAL_ROW_COUNT;
|
_totalRowCount = UNKNOWN_TOTAL_ROW_COUNT;
|
||||||
|
|
||||||
RowMap::iterator it = _rowMap.begin();
|
RowMap::iterator it = _rowMap.begin();
|
||||||
RowMap::iterator itEnd = _rowMap.end();
|
RowMap::iterator end = _rowMap.end();
|
||||||
for (; it != itEnd; ++it) delete it->second;
|
for (; it != end; ++it) delete it->second;
|
||||||
_rowMap.clear();
|
_rowMap.clear();
|
||||||
|
|
||||||
Statement::operator = (stmt);
|
Statement::operator = (stmt);
|
||||||
|
@ -71,6 +71,9 @@ const std::string ChildrenFirstTraverse::next(Stack* itStack, bool* isFinished)
|
|||||||
// (if depth limit allows)
|
// (if depth limit allows)
|
||||||
bool isDepthLimitReached = isFiniteDepth() && _depthDeterminer(*itStack) >= _maxDepth;
|
bool isDepthLimitReached = isFiniteDepth() && _depthDeterminer(*itStack) >= _maxDepth;
|
||||||
if (!isDepthLimitReached && isDirectory(*itStack->top()))
|
if (!isDepthLimitReached && isDirectory(*itStack->top()))
|
||||||
|
{
|
||||||
|
// check the dir is iterable
|
||||||
|
try
|
||||||
{
|
{
|
||||||
DirectoryIterator child_it(itStack->top().path());
|
DirectoryIterator child_it(itStack->top().path());
|
||||||
// check if directory is empty
|
// check if directory is empty
|
||||||
@ -80,6 +83,10 @@ const std::string ChildrenFirstTraverse::next(Stack* itStack, bool* isFinished)
|
|||||||
return child_it->path();
|
return child_it->path();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
catch (...)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
++(itStack->top());
|
++(itStack->top());
|
||||||
|
|
||||||
@ -140,7 +147,17 @@ const std::string SiblingsFirstTraverse::next(Stack* itStack, bool* isFinished)
|
|||||||
{
|
{
|
||||||
std::string dir = _dirsStack.top().front();
|
std::string dir = _dirsStack.top().front();
|
||||||
_dirsStack.top().pop();
|
_dirsStack.top().pop();
|
||||||
DirectoryIterator child_it(dir);
|
DirectoryIterator child_it;
|
||||||
|
|
||||||
|
// check the dir is iterable
|
||||||
|
try
|
||||||
|
{
|
||||||
|
child_it = dir;
|
||||||
|
}
|
||||||
|
catch (...)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
// check if directory is empty
|
// check if directory is empty
|
||||||
if (child_it != _itEnd)
|
if (child_it != _itEnd)
|
||||||
|
@ -155,8 +155,8 @@ void Compress::addFileRaw(std::istream& in, const ZipLocalFileHeader& h, const P
|
|||||||
if(hdr.hasExtraField()) // Update sizes in header extension.
|
if(hdr.hasExtraField()) // Update sizes in header extension.
|
||||||
hdr.setZip64Data();
|
hdr.setZip64Data();
|
||||||
_out.seekp(hdr.getStartPos(), std::ios_base::beg);
|
_out.seekp(hdr.getStartPos(), std::ios_base::beg);
|
||||||
std::string header = hdr.createHeader();
|
std::string headerString = hdr.createHeader();
|
||||||
_out.write(header.c_str(), static_cast<std::streamsize>(header.size()));
|
_out.write(headerString.c_str(), static_cast<std::streamsize>(headerString.size()));
|
||||||
_out.seekp(0, std::ios_base::end);
|
_out.seekp(0, std::ios_base::end);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -273,8 +273,8 @@ void Compress::addRecursive(const Poco::Path& entry, ZipCommon::CompressionMetho
|
|||||||
{
|
{
|
||||||
Poco::Path realFile(entry, *it);
|
Poco::Path realFile(entry, *it);
|
||||||
Poco::Path renamedFile(aName, *it);
|
Poco::Path renamedFile(aName, *it);
|
||||||
Poco::File aFile(realFile);
|
Poco::File file(realFile);
|
||||||
if (aFile.isDirectory())
|
if (file.isDirectory())
|
||||||
{
|
{
|
||||||
realFile.makeDirectory();
|
realFile.makeDirectory();
|
||||||
renamedFile.makeDirectory();
|
renamedFile.makeDirectory();
|
||||||
|
@ -31,7 +31,7 @@ const char ZipLocalFileHeader::HEADER[ZipCommon::HEADER_SIZE] = {'\x50', '\x4b',
|
|||||||
|
|
||||||
|
|
||||||
ZipLocalFileHeader::ZipLocalFileHeader(const Poco::Path& fileName,
|
ZipLocalFileHeader::ZipLocalFileHeader(const Poco::Path& fileName,
|
||||||
const Poco::DateTime& lastModifiedAt,
|
const Poco::DateTime& lastModified,
|
||||||
ZipCommon::CompressionMethod cm,
|
ZipCommon::CompressionMethod cm,
|
||||||
ZipCommon::CompressionLevel cl,
|
ZipCommon::CompressionLevel cl,
|
||||||
bool forceZip64):
|
bool forceZip64):
|
||||||
@ -62,7 +62,7 @@ ZipLocalFileHeader::ZipLocalFileHeader(const Poco::Path& fileName,
|
|||||||
setHostSystem(hs);
|
setHostSystem(hs);
|
||||||
setEncryption(false);
|
setEncryption(false);
|
||||||
setExtraFieldSize(0);
|
setExtraFieldSize(0);
|
||||||
setLastModifiedAt(lastModifiedAt);
|
setLastModifiedAt(lastModified);
|
||||||
init(fileName, cm, cl);
|
init(fileName, cm, cl);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -197,12 +197,12 @@ bool ZipLocalFileHeader::searchCRCAndSizesAfterData() const
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void ZipLocalFileHeader::setFileName(const std::string& fileName, bool isDirectory)
|
void ZipLocalFileHeader::setFileName(const std::string& fileName, bool directory)
|
||||||
{
|
{
|
||||||
poco_assert (!fileName.empty());
|
poco_assert (!fileName.empty());
|
||||||
Poco::Path aPath(fileName);
|
Poco::Path aPath(fileName);
|
||||||
|
|
||||||
if (isDirectory)
|
if (directory)
|
||||||
{
|
{
|
||||||
aPath.makeDirectory();
|
aPath.makeDirectory();
|
||||||
setCRC(0);
|
setCRC(0);
|
||||||
@ -218,7 +218,7 @@ void ZipLocalFileHeader::setFileName(const std::string& fileName, bool isDirecto
|
|||||||
_fileName = aPath.toString(Poco::Path::PATH_UNIX);
|
_fileName = aPath.toString(Poco::Path::PATH_UNIX);
|
||||||
if (_fileName[0] == '/')
|
if (_fileName[0] == '/')
|
||||||
_fileName = _fileName.substr(1);
|
_fileName = _fileName.substr(1);
|
||||||
if (isDirectory)
|
if (directory)
|
||||||
{
|
{
|
||||||
poco_assert_dbg (_fileName[_fileName.size()-1] == '/');
|
poco_assert_dbg (_fileName[_fileName.size()-1] == '/');
|
||||||
}
|
}
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
using namespace Poco::Zip;
|
using namespace Poco::Zip;
|
||||||
|
|
||||||
|
|
||||||
CompressTest::CompressTest(const std::string& name): CppUnit::TestCase(name)
|
CompressTest::CompressTest(const std::string& rName): CppUnit::TestCase(rName)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
using namespace Poco::Zip;
|
using namespace Poco::Zip;
|
||||||
|
|
||||||
|
|
||||||
PartialStreamTest::PartialStreamTest(const std::string& name): CppUnit::TestCase(name)
|
PartialStreamTest::PartialStreamTest(const std::string& rName): CppUnit::TestCase(rName)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
using namespace Poco::Zip;
|
using namespace Poco::Zip;
|
||||||
|
|
||||||
|
|
||||||
ZipTest::ZipTest(const std::string& name): CppUnit::TestCase(name)
|
ZipTest::ZipTest(const std::string& rName): CppUnit::TestCase(rName)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
59
appveyor.yml
59
appveyor.yml
@ -7,6 +7,16 @@ cache:
|
|||||||
- C:\OpenSSL-Win64
|
- C:\OpenSSL-Win64
|
||||||
- C:\Program Files (x86)\PostgreSQL\9.4
|
- C:\Program Files (x86)\PostgreSQL\9.4
|
||||||
|
|
||||||
|
|
||||||
|
branches:
|
||||||
|
except:
|
||||||
|
- /.*ravis.*/
|
||||||
|
|
||||||
|
|
||||||
|
skip_commits:
|
||||||
|
message: /Merge pull request.*/
|
||||||
|
|
||||||
|
|
||||||
hosts:
|
hosts:
|
||||||
localhost: 127.0.0.1
|
localhost: 127.0.0.1
|
||||||
db.server.com: 127.0.0.2
|
db.server.com: 127.0.0.2
|
||||||
@ -48,6 +58,8 @@ environment:
|
|||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
|
|
||||||
|
- builder: cygwin
|
||||||
|
|
||||||
- builder: msbuild
|
- builder: msbuild
|
||||||
vsver: 120
|
vsver: 120
|
||||||
linkmode: shared
|
linkmode: shared
|
||||||
@ -91,11 +103,28 @@ matrix:
|
|||||||
fast_finish: true
|
fast_finish: true
|
||||||
|
|
||||||
install:
|
install:
|
||||||
|
- C:\cygwin\setup-x86.exe -qnNdO -R C:/cygwin -s http://cygwin.mirror.constant.com -l C:/cygwin/var/cache/setup -P openssl-devel -P libiodbc-devel -P libiodbc2 -P odbc-mysql -P odbc-pgsql -P odbc-sqlite3 -P libmysqlclient-devel -P libsqlite3-devel
|
||||||
|
#
|
||||||
|
# C:Cygwin64 is not yet available on Build Worker image.
|
||||||
|
# - C:\cygwin64\setup-x86_64.exe -B -q -n -N -d -l C:/cygwin64/var/cache/setup -R c:\cygwin64 -s http://cygwin.mirror.constant.com -P openssl-devel
|
||||||
|
|
||||||
- set POCO_BASE=%CD%
|
- set POCO_BASE=%CD%
|
||||||
- set PATH=C:\ProgramData\chocolatey\bin;%PATH%
|
- set PATH=C:\ProgramData\chocolatey\bin;%PATH%
|
||||||
- c:\cygwin\bin\uname -a
|
- ps: |
|
||||||
- c:\cygwin\bin\cat /proc/cpuinfo
|
if ($env:builder -eq "cygwin")
|
||||||
- c:\cygwin\bin\cat /proc/meminfo
|
{
|
||||||
|
if ($env:platform -eq "Win32")
|
||||||
|
{
|
||||||
|
$env:PATH = "C:\cygwin\bin;" + $env:PATH
|
||||||
|
}
|
||||||
|
if ($env:platform -eq "x64")
|
||||||
|
{
|
||||||
|
$env:PATH = "c:\cygwin64\bin;" + $env:PATH
|
||||||
|
}
|
||||||
|
}
|
||||||
|
- uname -a
|
||||||
|
- cat /proc/cpuinfo
|
||||||
|
- cat /proc/meminfo
|
||||||
- ps: |
|
- ps: |
|
||||||
if ($env:builder -eq "cmake")
|
if ($env:builder -eq "cmake")
|
||||||
{
|
{
|
||||||
@ -119,8 +148,8 @@ install:
|
|||||||
- ps: |
|
- ps: |
|
||||||
if ($env:builder -eq "cmake")
|
if ($env:builder -eq "cmake")
|
||||||
{
|
{
|
||||||
$env:PATH = $env:ChocolateyInstall + "\bin" + ";" + $env:PATH
|
$env:PATH = $env:ChocolateyInstall + "\bin;" + $env:PATH
|
||||||
$env:PATH = $env:ChocolateyInstall + "\lib\jom\content" + ";" + $env:PATH
|
$env:PATH = $env:ChocolateyInstall + "\lib\jom\content;" + $env:PATH
|
||||||
}
|
}
|
||||||
# -------------------------------------------------------------------------------------------
|
# -------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -160,7 +189,7 @@ install:
|
|||||||
# MySQL 32 bit is not available by default on AppVeyor
|
# MySQL 32 bit is not available by default on AppVeyor
|
||||||
# -------------------------------------------------------------------------------------------
|
# -------------------------------------------------------------------------------------------
|
||||||
- ps: |
|
- ps: |
|
||||||
if ($env:platform -eq "Win32")
|
if (($env:platform -eq "Win32") -and !($env:builder -eq "cygwin"))
|
||||||
{
|
{
|
||||||
if (Test-Path $env:MYSQL32) {
|
if (Test-Path $env:MYSQL32) {
|
||||||
echo "using $env:MYSQL32 from cache"
|
echo "using $env:MYSQL32 from cache"
|
||||||
@ -180,7 +209,7 @@ install:
|
|||||||
# http://www.enterprisedb.com/products-services-training/pgdownload#windows
|
# http://www.enterprisedb.com/products-services-training/pgdownload#windows
|
||||||
# -------------------------------------------------------------------------------------------
|
# -------------------------------------------------------------------------------------------
|
||||||
- ps: |
|
- ps: |
|
||||||
if ($env:platform -eq "Win32")
|
if (($env:platform -eq "Win32") -and !($env:builder -eq "cygwin"))
|
||||||
{
|
{
|
||||||
if (Test-Path $env:POSTGRES32) {
|
if (Test-Path $env:POSTGRES32) {
|
||||||
echo "using $env:POSTGRES32 from cache"
|
echo "using $env:POSTGRES32 from cache"
|
||||||
@ -244,6 +273,8 @@ before_build:
|
|||||||
# & C:\cygwin\bin\ls -lR $env:MYSQL64
|
# & C:\cygwin\bin\ls -lR $env:MYSQL64
|
||||||
# -------------------------------------------------------------------------------------------
|
# -------------------------------------------------------------------------------------------
|
||||||
- ps: |
|
- ps: |
|
||||||
|
if (!($env:builder -eq "cygwin"))
|
||||||
|
{
|
||||||
if ($env:platform -eq "Win32")
|
if ($env:platform -eq "Win32")
|
||||||
{
|
{
|
||||||
$env:INCLUDE = $env:MYSQL32 + "\include;" + $env:INCLUDE
|
$env:INCLUDE = $env:MYSQL32 + "\include;" + $env:INCLUDE
|
||||||
@ -269,12 +300,15 @@ before_build:
|
|||||||
$env:MYSQL_PWD="Password12!"
|
$env:MYSQL_PWD="Password12!"
|
||||||
$cmd = 'mysql -e "create database pocotestdb;" --user=root';
|
$cmd = 'mysql -e "create database pocotestdb;" --user=root';
|
||||||
iex "& $cmd"
|
iex "& $cmd"
|
||||||
|
}
|
||||||
# -------------------------------------------------------------------------------------------
|
# -------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
# -------------------------------------------------------------------------------------------
|
# -------------------------------------------------------------------------------------------
|
||||||
# PostgreSQL
|
# PostgreSQL
|
||||||
# -------------------------------------------------------------------------------------------
|
# -------------------------------------------------------------------------------------------
|
||||||
- ps: |
|
- ps: |
|
||||||
|
if (!($env:builder -eq "cygwin"))
|
||||||
|
{
|
||||||
if ($env:platform -eq "Win32")
|
if ($env:platform -eq "Win32")
|
||||||
{
|
{
|
||||||
$env:INCLUDE = $env:POSTGRES32 + "\include;" + $env:INCLUDE
|
$env:INCLUDE = $env:POSTGRES32 + "\include;" + $env:INCLUDE
|
||||||
@ -287,6 +321,7 @@ before_build:
|
|||||||
$env:LIB = $env:POSTGRES64 + "\lib;" + $env:LIB
|
$env:LIB = $env:POSTGRES64 + "\lib;" + $env:LIB
|
||||||
$env:PATH = $env:POSTGRES64 + "\bin;" + $env:PATH
|
$env:PATH = $env:POSTGRES64 + "\bin;" + $env:PATH
|
||||||
}
|
}
|
||||||
|
}
|
||||||
# -------------------------------------------------------------------------------------------
|
# -------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
after_build:
|
after_build:
|
||||||
@ -339,6 +374,11 @@ build_script:
|
|||||||
# Command executed with exception: MC: Compiling C:/projects/poco/Foundation/src/pocomsg.mc
|
# Command executed with exception: MC: Compiling C:/projects/poco/Foundation/src/pocomsg.mc
|
||||||
# -------------------------------------------------------------------------------------------
|
# -------------------------------------------------------------------------------------------
|
||||||
- ps: |
|
- ps: |
|
||||||
|
if (($env:builder -eq "cygwin") -and ($env:platform -eq "Win32"))
|
||||||
|
{
|
||||||
|
$cmd = 'bash.exe configure --everything';iex "& $cmd"
|
||||||
|
$cmd = 'make.exe -s';iex "& $cmd"
|
||||||
|
}
|
||||||
if ($env:builder -eq "msbuild")
|
if ($env:builder -eq "msbuild")
|
||||||
{
|
{
|
||||||
$logger='"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"';
|
$logger='"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"';
|
||||||
@ -410,6 +450,11 @@ test_script:
|
|||||||
$line='-------------------------------------------------------------------------------------';
|
$line='-------------------------------------------------------------------------------------';
|
||||||
if ($env:configuration -eq "release")
|
if ($env:configuration -eq "release")
|
||||||
{
|
{
|
||||||
|
if (($env:builder -eq "cygwin") -and ($env:platform -eq "Win32"))
|
||||||
|
{
|
||||||
|
$cmd = 'C:\cygwin\usr\sbin\cygserver.exe "&"';iex "& $cmd"
|
||||||
|
$cmd = 'bash.exe -c "appveyor/Cygwin/runtests.sh"';iex "& $cmd"
|
||||||
|
}
|
||||||
if ($env:builder -eq "msbuild" -and $env:linkmode -eq "shared")
|
if ($env:builder -eq "msbuild" -and $env:linkmode -eq "shared")
|
||||||
{
|
{
|
||||||
$suffix = '';
|
$suffix = '';
|
||||||
|
2
appveyor/Cygwin/excluded.sh
Normal file
2
appveyor/Cygwin/excluded.sh
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
export EXCLUDE_TESTS="Foundation Data/ODBC Data/MySQL Redis PDF"
|
||||||
|
|
11
appveyor/Cygwin/runtests.sh
Normal file
11
appveyor/Cygwin/runtests.sh
Normal 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
|
10
appveyor/ignored.sh
Normal file
10
appveyor/ignored.sh
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
export CPPUNIT_IGNORE="\
|
||||||
|
N7CppUnit10TestCallerI8PathTestEE.testExpand, \
|
||||||
|
N7CppUnit10TestCallerI13RawSocketTestEE.testEchoIPv4, \
|
||||||
|
N7CppUnit10TestCallerI13RawSocketTestEE.testSendToReceiveFromIPv4, \
|
||||||
|
N7CppUnit10TestCallerI14ICMPClientTestEE.testPing, \
|
||||||
|
N7CppUnit10TestCallerI22HTTPSClientSessionTestEE.testProxy, \
|
||||||
|
N7CppUnit10TestCallerI22HTTPSStreamFactoryTestEE.testProxy, \
|
||||||
|
N7CppUnit10TestCallerI19MulticastSocketTestEE.testMulticast, \
|
||||||
|
N7CppUnit10TestCallerI13NTPClientTestEE.testTimeSync"
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user