gtest_main.cpp 402 B

12345678910111213
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. #include <gtest/gtest.h>
  5. #include "common/init_llvm.h"
  6. auto main(int argc, char** argv) -> int {
  7. Carbon::InitLLVM init_llvm(argc, argv);
  8. testing::InitGoogleTest(&argc, argv);
  9. return RUN_ALL_TESTS();
  10. }