| 114 | } |
| 115 | |
| 116 | void failed_helper(const void* a, const void* b, size_t s) { |
| 117 | EXPECT_FALSE(InlinedMemcmpEq(a, b, s)) |
| 118 | << "a is: " << std::string((char*)a, s) << std::endl |
| 119 | << "b is: " << std::string((char*)b, s) << std::endl; |
| 120 | } |
| 121 | |
| 122 | TEST(InlinedMemcmpEq, Basic) { |
| 123 | { |
no test coverage detected