
When parsing a 3-component triple, after we determine Arch and Env, if the middle component is "none", treat it as OS instead of Vendor. See: https://discourse.llvm.org/t/rfc-baremetal-target-triple-normalization/78524 Fixes: #89582.
48 lines
1.6 KiB
C++
48 lines
1.6 KiB
C++
//=== 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"
|
|
|
|
using namespace llvm;
|
|
using namespace clang;
|
|
|
|
namespace {
|
|
|
|
// Usually FrontendAction takes the raw pointers and wraps them back into
|
|
// unique_ptrs in InitializeFileRemapping()
|
|
static void cleanupRemappedFileBuffers(CompilerInstance &CI) {
|
|
for (const auto &RB : CI.getPreprocessorOpts().RemappedFileBuffers) {
|
|
delete RB.second;
|
|
}
|
|
CI.getPreprocessorOpts().clearRemappedFiles();
|
|
}
|
|
|
|
TEST(IncrementalCompilerBuilder, SetCompilerArgs) {
|
|
std::vector<const char *> ClangArgv = {"-Xclang", "-ast-dump-all"};
|
|
auto CB = clang::IncrementalCompilerBuilder();
|
|
CB.SetCompilerArgs(ClangArgv);
|
|
auto CI = cantFail(CB.CreateCpp());
|
|
EXPECT_TRUE(CI->getFrontendOpts().ASTDumpAll);
|
|
cleanupRemappedFileBuffers(*CI);
|
|
}
|
|
|
|
TEST(IncrementalCompilerBuilder, SetTargetTriple) {
|
|
auto CB = clang::IncrementalCompilerBuilder();
|
|
CB.SetTargetTriple("armv6-none-eabi");
|
|
auto CI = cantFail(CB.CreateCpp());
|
|
EXPECT_EQ(CI->getTargetOpts().Triple, "armv6-unknown-none-eabi");
|
|
cleanupRemappedFileBuffers(*CI);
|
|
}
|
|
|
|
} // end anonymous namespace
|