diff options
-rw-r--r-- | test/net/TestLocalSocketAddress.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/net/TestLocalSocketAddress.cxx b/test/net/TestLocalSocketAddress.cxx index 1eef4882f..8ba61fc27 100644 --- a/test/net/TestLocalSocketAddress.cxx +++ b/test/net/TestLocalSocketAddress.cxx @@ -67,7 +67,7 @@ TEST(LocalSocketAddress, Abstract) EXPECT_EQ(sun.sun_path[0], 0); /* ... but are not null-terminated */ - EXPECT_STREQ(sun.sun_path + 1, path + 1); + EXPECT_EQ(memcmp(sun.sun_path + 1, path + 1, strlen(path) - 1), 0); EXPECT_EQ(sun.sun_path + strlen(path), (const char *)a.GetAddress() + a.GetSize()); } |