Skip to content

Commit 8d39b2a

Browse files
author
Zachary Turner
committedFeb 18, 2016
Fix SocketTest on Windows.
Differential Revision: http://reviews.llvm.org/D17106 llvm-svn: 261240
1 parent 43ec3af commit 8d39b2a

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed
 

Diff for: ‎lldb/unittests/Host/SocketAddressTest.cpp

-4
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,7 @@ TEST_F (SocketAddressTest, Set)
3333
ASSERT_EQ (0, sa.GetPort ());
3434

3535
ASSERT_TRUE (sa.SetToLocalhost (AF_INET6, 1139));
36-
#ifdef _WIN32
37-
ASSERT_STREQ ("0:0:0:0:0:0:0:1", sa.GetIPAddress ().c_str ());
38-
#else
3936
ASSERT_STREQ ("::1", sa.GetIPAddress ().c_str ());
40-
#endif
4137
ASSERT_EQ (1139, sa.GetPort ());
4238
}
4339

0 commit comments

Comments
 (0)
Please sign in to comment.