//=== unittests/Interpreter/IncrementalCompilerBuilderTest.cpp ------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "clang/Basic/TargetOptions.h" #include "clang/Frontend/CompilerInstance.h" #include "clang/Interpreter/Interpreter.h" #include "clang/Lex/PreprocessorOptions.h" #include "llvm/Support/Error.h" #include "gtest/gtest.h" usingnamespacellvm; usingnamespaceclang; namespace { // Usually FrontendAction takes the raw pointers and wraps them back into // unique_ptrs in InitializeFileRemapping() static void cleanupRemappedFileBuffers(CompilerInstance &CI) { … } TEST(IncrementalCompilerBuilder, SetCompilerArgs) { … } TEST(IncrementalCompilerBuilder, SetTargetTriple) { … } } // end anonymous namespace