Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
bmcweb
/
a1e077c096aa03110431f51269ffe50b684058c1
/
.
/
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
());
}