diff options
| author | Ed Tanous <ed.tanous@intel.com> | 2017-04-18 17:49:51 -0700 |
|---|---|---|
| committer | Ed Tanous <ed.tanous@intel.com> | 2017-04-18 17:49:51 -0700 |
| commit | 01250f2a144846b493cf5cf8f5311b1bf3fe6c19 (patch) | |
| tree | 429f8011d5245f28c948e3ea346a6e7fd494f0ca /src/msan_test.cpp | |
| parent | b078cf37df19e1e2610c07002a63562e0e24edb4 (diff) | |
| download | bmcweb-01250f2a144846b493cf5cf8f5311b1bf3fe6c19.tar.gz bmcweb-01250f2a144846b493cf5cf8f5311b1bf3fe6c19.zip | |
incremental
Diffstat (limited to 'src/msan_test.cpp')
| -rw-r--r-- | src/msan_test.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/msan_test.cpp b/src/msan_test.cpp new file mode 100644 index 0000000..047d3cf --- /dev/null +++ b/src/msan_test.cpp @@ -0,0 +1,7 @@ +#include "gtest/gtest.h" +#include <string> + +TEST(MemorySanitizer, TestIsWorking) { + std::string foo("foo"); + EXPECT_STREQ("foo", foo.c_str()); +} |

