summaryrefslogtreecommitdiff
path: root/src/msan_test.cpp
diff options
context:
space:
mode:
authorEd Tanous <ed.tanous@intel.com>2017-04-19 03:49:51 +0300
committerEd Tanous <ed.tanous@intel.com>2017-04-19 03:49:51 +0300
commit01250f2a144846b493cf5cf8f5311b1bf3fe6c19 (patch)
tree429f8011d5245f28c948e3ea346a6e7fd494f0ca /src/msan_test.cpp
parentb078cf37df19e1e2610c07002a63562e0e24edb4 (diff)
downloadbmcweb-01250f2a144846b493cf5cf8f5311b1bf3fe6c19.tar.xz
incremental
Diffstat (limited to 'src/msan_test.cpp')
-rw-r--r--src/msan_test.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/msan_test.cpp b/src/msan_test.cpp
new file mode 100644
index 0000000000..047d3cfa4a
--- /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());
+}