diff options
Diffstat (limited to 'lib/xray/tests/unit/xray_unit_test_main.cc')
-rw-r--r-- | lib/xray/tests/unit/xray_unit_test_main.cc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/xray/tests/unit/xray_unit_test_main.cc b/lib/xray/tests/unit/xray_unit_test_main.cc new file mode 100644 index 0000000000000..27d17527dd5bc --- /dev/null +++ b/lib/xray/tests/unit/xray_unit_test_main.cc @@ -0,0 +1,18 @@ +//===-- xray_unit_test_main.cc --------------------------------------------===// +// +// 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 XRay, a function call tracing system. +// +//===----------------------------------------------------------------------===// +#include "gtest/gtest.h" + +int main(int argc, char **argv) { + testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +} |