xref: /llvm-project/compiler-rt/lib/interception/tests/interception_test_main.cpp (revision 9642e337ebe672c3810c80cf9920f3678806ea20)
1*9642e337SNico Weber //===-- interception_test_main.cpp ----------------------------------------===//
2*9642e337SNico Weber //
3*9642e337SNico Weber // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*9642e337SNico Weber // See https://llvm.org/LICENSE.txt for license information.
5*9642e337SNico Weber // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*9642e337SNico Weber //
7*9642e337SNico Weber //===----------------------------------------------------------------------===//
8*9642e337SNico Weber //
9*9642e337SNico Weber // This file is a part of AddressSanitizer, an address sanity checker.
10*9642e337SNico Weber //
11*9642e337SNico Weber // Testing the machinery for providing replacements/wrappers for system
12*9642e337SNico Weber // functions.
13*9642e337SNico Weber //===----------------------------------------------------------------------===//
14*9642e337SNico Weber 
15*9642e337SNico Weber #include "gtest/gtest.h"
16*9642e337SNico Weber 
main(int argc,char ** argv)17*9642e337SNico Weber int main(int argc, char **argv) {
18*9642e337SNico Weber   testing::GTEST_FLAG(death_test_style) = "threadsafe";
19*9642e337SNico Weber   testing::InitGoogleTest(&argc, argv);
20*9642e337SNico Weber   return RUN_ALL_TESTS();
21*9642e337SNico Weber }
22