16 #include "gtest/gtest.h" 22 TEST(LeakCheckTest, LeakMemory) {
27 char*
foo = strdup(
"lsan should complain about this leaked string");
28 ABSL_RAW_LOG(INFO,
"Should detect leaked std::string %s", foo);
31 TEST(LeakCheckTest, LeakMemoryAfterDisablerScope) {
36 char*
foo = strdup(
"lsan should also complain about this leaked string");
37 ABSL_RAW_LOG(INFO,
"Re-enabled leak detection.Should detect leaked std::string %s",
#define ABSL_RAW_LOG(severity,...)
TEST(Symbolize, Unimplemented)