Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
bmcweb
/
01250f2a144846b493cf5cf8f5311b1bf3fe6c19
/
.
/
src
/
msan_test.cpp
blob: 047d3cfa4a98ca42f0b599e20ff57d2a64324e31 [
file
] [
log
] [
blame
]
Ed Tanous
01250f2
2017-04-18 17:49:51 -0700
[
diff
] [
blame^
]
1
#include
"gtest/gtest.h"
2
#include
<string>
3
4
TEST
(
MemorySanitizer
,
TestIsWorking
)
{
5
std
::
string foo
(
"foo"
);
6
EXPECT_STREQ
(
"foo"
,
foo
.
c_str
());
7
}