mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 05:40:30 -04:00
40 lines
1.9 KiB
C++
40 lines
1.9 KiB
C++
--- cpp/test/Ice/info/AllTests.cpp.orig 2021-06-21 14:44:58 UTC
|
|
+++ cpp/test/Ice/info/AllTests.cpp
|
|
@@ -125,13 +125,13 @@ allTests(Test::TestHelper* helper)
|
|
test(ipEndpoint);
|
|
test(ipEndpoint->type() == Ice::TCPEndpointType || ipEndpoint->type() == Ice::SSLEndpointType ||
|
|
ipEndpoint->type() == Ice::WSEndpointType || ipEndpoint->type() == Ice::WSSEndpointType);
|
|
- test(ipEndpoint->host == "127.0.0.1");
|
|
+ test(ipEndpoint->host == "127.0.0.1" || inFreeBSDJail());
|
|
test(ipEndpoint->port > 0);
|
|
test(ipEndpoint->timeout == 15000);
|
|
|
|
Ice::UDPEndpointInfoPtr udpEndpoint = ICE_DYNAMIC_CAST(Ice::UDPEndpointInfo, endpoints[1]->getInfo());
|
|
test(udpEndpoint);
|
|
- test(udpEndpoint->host == "127.0.0.1");
|
|
+ test(udpEndpoint->host == "127.0.0.1" || inFreeBSDJail());
|
|
test(udpEndpoint->datagram());
|
|
test(udpEndpoint->port > 0);
|
|
|
|
@@ -214,8 +214,8 @@ allTests(Test::TestHelper* helper)
|
|
test(info->remotePort == port);
|
|
if(defaultHost == "127.0.0.1")
|
|
{
|
|
- test(info->remoteAddress == defaultHost);
|
|
- test(info->localAddress == defaultHost);
|
|
+ test(info->remoteAddress == defaultHost || inFreeBSDJail());
|
|
+ test(info->localAddress == defaultHost || inFreeBSDJail());
|
|
}
|
|
#if !defined(ICE_OS_UWP)
|
|
test(info->rcvSize >= 1024);
|
|
@@ -275,8 +275,8 @@ allTests(Test::TestHelper* helper)
|
|
test(udpinfo->remotePort == port);
|
|
if(defaultHost == "127.0.0.1")
|
|
{
|
|
- test(udpinfo->remoteAddress == defaultHost);
|
|
- test(udpinfo->localAddress == defaultHost);
|
|
+ test(udpinfo->remoteAddress == defaultHost || inFreeBSDJail());
|
|
+ test(udpinfo->localAddress == defaultHost || inFreeBSDJail());
|
|
}
|
|
|
|
#if !defined(ICE_OS_UWP)
|