summaryrefslogtreecommitdiffstats
path: root/lldb/unittests/Host/SocketAddressTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/unittests/Host/SocketAddressTest.cpp')
-rw-r--r--lldb/unittests/Host/SocketAddressTest.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/unittests/Host/SocketAddressTest.cpp b/lldb/unittests/Host/SocketAddressTest.cpp
index 2aae15b0729..6b27e04ce70 100644
--- a/lldb/unittests/Host/SocketAddressTest.cpp
+++ b/lldb/unittests/Host/SocketAddressTest.cpp
@@ -33,7 +33,8 @@ TEST_F (SocketAddressTest, Set)
ASSERT_EQ (0, sa.GetPort ());
ASSERT_TRUE (sa.SetToLocalhost (AF_INET6, 1139));
- ASSERT_STREQ ("::1", sa.GetIPAddress ().c_str ());
+ ASSERT_TRUE(sa.GetIPAddress() == "::1" || sa.GetIPAddress() == "0:0:0:0:0:0:0:1") << "Address was: "
+ << sa.GetIPAddress();
ASSERT_EQ (1139, sa.GetPort ());
}
OpenPOWER on IntegriCloud