diff options
author | Takuto Ikuta <tikuta@google.com> | 2024-06-03 20:30:14 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-03 07:30:14 -0400 |
commit | 9a7bd8a60f03595be5d42315790df6d409f81091 (patch) | |
tree | b220a50c5b6c76f9dc91fd7a7b7b4d17472571c7 /clang/unittests/Tooling/CompilationDatabaseTest.cpp | |
parent | 12fcca0afeb08fbe41d79c5387cfacb249992bb4 (diff) | |
download | llvm-9a7bd8a60f03595be5d42315790df6d409f81091.zip llvm-9a7bd8a60f03595be5d42315790df6d409f81091.tar.gz llvm-9a7bd8a60f03595be5d42315790df6d409f81091.tar.bz2 |
remove goma support from clang (#93942)
goma is deprecated and not maintained anymore.
https://chromium.googlesource.com/infra/goma/client/
Diffstat (limited to 'clang/unittests/Tooling/CompilationDatabaseTest.cpp')
-rw-r--r-- | clang/unittests/Tooling/CompilationDatabaseTest.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/unittests/Tooling/CompilationDatabaseTest.cpp b/clang/unittests/Tooling/CompilationDatabaseTest.cpp index 45062cf..2032b13 100644 --- a/clang/unittests/Tooling/CompilationDatabaseTest.cpp +++ b/clang/unittests/Tooling/CompilationDatabaseTest.cpp @@ -402,7 +402,6 @@ TEST(findCompileArgsInJsonDatabase, FindsEntry) { TEST(findCompileArgsInJsonDatabase, ParsesCompilerWrappers) { std::vector<std::pair<std::string, std::string>> Cases = { {"distcc gcc foo.c", "gcc foo.c"}, - {"gomacc clang++ foo.c", "clang++ foo.c"}, {"sccache clang++ foo.c", "clang++ foo.c"}, {"ccache gcc foo.c", "gcc foo.c"}, {"ccache.exe gcc foo.c", "gcc foo.c"}, |