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