1*545866cbSSnehasish Kumar //===-- driver.cpp ----------------------------------------------*- C++ -*-===// 2*545866cbSSnehasish Kumar // 3*545866cbSSnehasish Kumar // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*545866cbSSnehasish Kumar // See https://llvm.org/LICENSE.txt for license information. 5*545866cbSSnehasish Kumar // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*545866cbSSnehasish Kumar // 7*545866cbSSnehasish Kumar //===----------------------------------------------------------------------===// 8*545866cbSSnehasish Kumar 9*545866cbSSnehasish Kumar #include "gtest/gtest.h" 10*545866cbSSnehasish Kumar main(int argc,char ** argv)11*545866cbSSnehasish Kumarint main(int argc, char **argv) { 12*545866cbSSnehasish Kumar testing::InitGoogleTest(&argc, argv); 13*545866cbSSnehasish Kumar return RUN_ALL_TESTS(); 14*545866cbSSnehasish Kumar } 15