summaryrefslogtreecommitdiff
path: root/cpp/src/tests/SystemInfo.cpp
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2012-11-16 14:27:08 +0000
committerAndrew Stitcher <astitcher@apache.org>2012-11-16 14:27:08 +0000
commit384aa602a1d54734f76d1d0fc59ef41d2415e03b (patch)
treeb398c0b6a051b26adeceaf54e66b6c0ec7998874 /cpp/src/tests/SystemInfo.cpp
parent74cf1e52ab5ef4f4c69a9b78f9664ea0558e5207 (diff)
downloadqpid-python-384aa602a1d54734f76d1d0fc59ef41d2415e03b.tar.gz
NO-JIRA: Removed unused isLocalHost() code
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1410360 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/SystemInfo.cpp')
-rw-r--r--cpp/src/tests/SystemInfo.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/cpp/src/tests/SystemInfo.cpp b/cpp/src/tests/SystemInfo.cpp
index 12d8d3dba8..34f1ac408e 100644
--- a/cpp/src/tests/SystemInfo.cpp
+++ b/cpp/src/tests/SystemInfo.cpp
@@ -31,22 +31,6 @@ namespace tests {
QPID_AUTO_TEST_SUITE(SystemInfoTestSuite)
-QPID_AUTO_TEST_CASE(TestIsLocalHost) {
- // Test that local hostname and addresses are considered local
- Address a;
- 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()
}} // namespace qpid::tests