diff options
Diffstat (limited to 'qpid/cpp/src/tests/SystemInfo.cpp')
| -rw-r--r-- | qpid/cpp/src/tests/SystemInfo.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qpid/cpp/src/tests/SystemInfo.cpp b/qpid/cpp/src/tests/SystemInfo.cpp index c467a0b012..12d8d3dba8 100644 --- a/qpid/cpp/src/tests/SystemInfo.cpp +++ b/qpid/cpp/src/tests/SystemInfo.cpp @@ -37,12 +37,14 @@ QPID_AUTO_TEST_CASE(TestIsLocalHost) { BOOST_ASSERT(SystemInfo::getLocalHostname(a)); BOOST_ASSERT(SystemInfo::isLocalHost(a.host)); std::vector<Address> addrs; + SystemInfo::getLocalIpAddresses(0, addrs); for (std::vector<Address>::iterator i = addrs.begin(); i != addrs.end(); ++i) BOOST_ASSERT(SystemInfo::isLocalHost(i->host)); // Check some non-local addresses BOOST_ASSERT(!SystemInfo::isLocalHost("123.4.5.6")); BOOST_ASSERT(!SystemInfo::isLocalHost("nosuchhost")); BOOST_ASSERT(SystemInfo::isLocalHost("127.0.0.1")); + BOOST_ASSERT(SystemInfo::isLocalHost("::1")); } QPID_AUTO_TEST_SUITE_END() |
