1 //===-- msan_test_main.cc -------------------------------------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file is a part of MemorySanitizer. 11 // 12 //===----------------------------------------------------------------------===// 13 #ifndef MSAN_EXTERNAL_TEST_CONFIG 14 #include "msan_test_config.h" 15 #endif // MSAN_EXTERNAL_TEST_CONFIG 16 17 int main(int argc, char **argv) { 18 testing::GTEST_FLAG(death_test_style) = "threadsafe"; 19 testing::InitGoogleTest(&argc, argv); 20 return RUN_ALL_TESTS(); 21 } 22