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