summaryrefslogtreecommitdiff
path: root/lib/msan/tests/msan_test_config.h
diff options
context:
space:
mode:
authorEvgeniy Stepanov <eugeni.stepanov@gmail.com>2013-03-22 09:01:26 +0000
committerEvgeniy Stepanov <eugeni.stepanov@gmail.com>2013-03-22 09:01:26 +0000
commit6e5ff89e8980b7c2ca0a39811433fb7ac2c74372 (patch)
tree12b1e52463f188eae62790a68a908f4cf0a89ab3 /lib/msan/tests/msan_test_config.h
parent86b5722bf955261c0f43caae9b8d0ea6faa05055 (diff)
[msan] Move test main and gtest include to separate files.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@177718 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/msan/tests/msan_test_config.h')
-rw-r--r--lib/msan/tests/msan_test_config.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/msan/tests/msan_test_config.h b/lib/msan/tests/msan_test_config.h
new file mode 100644
index 000000000..5404c434d
--- /dev/null
+++ b/lib/msan/tests/msan_test_config.h
@@ -0,0 +1,20 @@
+//===-- msan_test_config.h ----------------------------------------*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This file is a part of MemorySanitizer.
+//
+// MemorySanitizer unit tests.
+//===----------------------------------------------------------------------===//
+
+#ifndef MSAN_TEST_CONFIG_H
+#define MSAN_TEST_CONFIG_H
+
+#include "gtest/gtest.h"
+
+#endif // MSAN_TEST_CONFIG_H