1*bc0d697dSNico Weber //===-- xray_unit_test_main.cpp -------------------------------------------===// 2*bc0d697dSNico Weber // 3*bc0d697dSNico Weber // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*bc0d697dSNico Weber // See https://llvm.org/LICENSE.txt for license information. 5*bc0d697dSNico Weber // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*bc0d697dSNico Weber // 7*bc0d697dSNico Weber //===----------------------------------------------------------------------===// 8*bc0d697dSNico Weber // 9*bc0d697dSNico Weber // This file is a part of XRay, a function call tracing system. 10*bc0d697dSNico Weber // 11*bc0d697dSNico Weber //===----------------------------------------------------------------------===// 12*bc0d697dSNico Weber #include "gtest/gtest.h" 13*bc0d697dSNico Weber main(int argc,char ** argv)14*bc0d697dSNico Weberint main(int argc, char **argv) { 15*bc0d697dSNico Weber testing::InitGoogleTest(&argc, argv); 16*bc0d697dSNico Weber return RUN_ALL_TESTS(); 17*bc0d697dSNico Weber } 18