Resolve 'make test' warnings

Fix our own, and hide csocket, gtest & gmock related.
This commit is contained in:
J-P Nurmi
2015-09-21 09:04:59 +02:00
parent e879203d54
commit 565d04a8ef
2 changed files with 5 additions and 2 deletions

View File

@@ -58,8 +58,8 @@ TEST_F(EscapeTest, Test) {
}
TEST(StringTest, Bool) {
EXPECT_EQ(true, CString(true).ToBool());
EXPECT_EQ(false, CString(false).ToBool());
EXPECT_TRUE(CString(true).ToBool());
EXPECT_FALSE(CString(false).ToBool());
}
#define CS(s) (CString((s), sizeof(s)-1))