Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
bmcweb
/
1c74de8786b2e16de8281abf4d427644fc426ee8
/
.
/
src
/
msan_test.cpp
blob: 9fcb9d530ccf7d72242dc91d5f19414d4fb7d1d2 [
file
] [
log
] [
blame
]
#include
<string>
#include
"gtest/gtest.h"
TEST
(
MemorySanitizer
,
TestIsWorking
)
{
std
::
string foo
(
"foo"
);
EXPECT_STREQ
(
"foo"
,
foo
.
c_str
());
}