From a9ebc3862c51c22182b7e93ad4aab6c730eae327 Mon Sep 17 00:00:00 2001 From: Jonas Hahnfeld Date: Wed, 19 Jul 2023 15:34:55 +0200 Subject: [PATCH] Remove unused tools from Cling's lit.cfg --- test/lit.cfg | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/test/lit.cfg b/test/lit.cfg index 8eb82df4..23422c20 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -69,18 +69,6 @@ llvm_config.with_system_environment( config.substitutions.append(('%PATH%', config.environment['PATH'])) -# For each occurrence of a clang tool name, replace it with the full path to -# the build directory holding that tool. We explicitly specify the directories -# to search to ensure that we get the tools just built and not some random -# tools that might happen to be in the user's PATH. -tool_dirs = [config.llvm_tools_dir] - -tools = [ - 'c-index-test', 'clang-diff', 'clang-format', 'clang-tblgen', 'opt' -] - -llvm_config.add_tool_substitutions(tools, tool_dirs) - # We want to invoke the system clang. Or not? config.substitutions = [x for x in config.substitutions if x[0] != ' clang ']