[compiler-rt] [compiler-rt] remove unused default in compiler-rt lit tests (PR #143738)
Charles Zablit via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 11 08:55:41 PDT 2025
https://github.com/charles-zablit created https://github.com/llvm/llvm-project/pull/143738
In https://github.com/llvm/llvm-project/pull/143183 was mistakenly added a default value to `python_root_dir` in lit tests of compiler-rt.
This is unused by the lit tests of compiler-rt, as it was meant to be used by `lldb`.
This patch removes this change.
>From dc67d87367537852d3486186ac114ee3439fe54a Mon Sep 17 00:00:00 2001
From: Charles Zablit <c_zablit at apple.com>
Date: Wed, 11 Jun 2025 16:53:32 +0100
Subject: [PATCH] remove unused default in compiler-rt lit tests
---
compiler-rt/test/lit.common.configured.in | 1 -
1 file changed, 1 deletion(-)
diff --git a/compiler-rt/test/lit.common.configured.in b/compiler-rt/test/lit.common.configured.in
index 8ca47a8df5aed..04d1a4df5a54f 100644
--- a/compiler-rt/test/lit.common.configured.in
+++ b/compiler-rt/test/lit.common.configured.in
@@ -25,7 +25,6 @@ set_default("gold_executable", "@GOLD_EXECUTABLE@")
set_default("clang", "@COMPILER_RT_RESOLVED_TEST_COMPILER@")
set_default("compiler_id", "@COMPILER_RT_TEST_COMPILER_ID@")
set_default("python_executable", "@Python3_EXECUTABLE@")
-set_default("python_root_dir", "@Python3_ROOT_DIR@")
set_default("compiler_rt_debug", @COMPILER_RT_DEBUG_PYBOOL@)
set_default("compiler_rt_intercept_libdispatch", @COMPILER_RT_INTERCEPT_LIBDISPATCH_PYBOOL@)
set_default("compiler_rt_output_dir", "@COMPILER_RT_RESOLVED_OUTPUT_DIR@")
More information about the llvm-commits
mailing list