[Lldb-commits] [lldb] c9bfe04 - [lldb/test] Fix TestScriptedProcess.py failures on arm linux bots
Med Ismail Bennani via lldb-commits
lldb-commits at lists.llvm.org
Tue Nov 7 23:24:11 PST 2023
Author: Med Ismail Bennani
Date: 2023-11-07T23:24:02-08:00
New Revision: c9bfe0411f1d3f1f7261675e972bf223f9167548
URL: https://github.com/llvm/llvm-project/commit/c9bfe0411f1d3f1f7261675e972bf223f9167548
DIFF: https://github.com/llvm/llvm-project/commit/c9bfe0411f1d3f1f7261675e972bf223f9167548.diff
LOG: [lldb/test] Fix TestScriptedProcess.py failures on arm linux bots
This patch tentatively fixes TestScriptedProcess.py which has been
failing on the `lldb-arm-ubuntu` & `lldb-aarch64-ubuntu` bots:
- https://lab.llvm.org/buildbot/#/builders/17/builds/44965
- https://lab.llvm.org/buildbot/#/builders/96/builds/48152
According to the test log, on those systems, the clang driver that build
the test binary doesn't have the `-m` flag to specify the architure so
this patch replaces it with the `-target` flag using `clang -dumpmachine`
to get the host triple.
Signed-off-by: Med Ismail Bennani <ismail at bennani.ma>
Added:
Modified:
lldb/test/API/functionalities/scripted_process/Makefile
Removed:
################################################################################
diff --git a/lldb/test/API/functionalities/scripted_process/Makefile b/lldb/test/API/functionalities/scripted_process/Makefile
index c23310226d8752f..ba739451fc7ef3e 100644
--- a/lldb/test/API/functionalities/scripted_process/Makefile
+++ b/lldb/test/API/functionalities/scripted_process/Makefile
@@ -2,12 +2,14 @@ CXX_SOURCES := main.cpp
ENABLE_THREADS := YES
LD_EXTRAS := -L. -lbaz -I.
-override ARCH := $(shell uname -m)
+override TRIPLE := $(shell $(CC) -dumpmachine)
+
+CXXFLAGS_EXTRAS := -target $(TRIPLE)
all: libbaz.dylib a.out
libbaz.dylib: baz.cpp
- $(MAKE) -f $(MAKEFILE_RULES) ARCH=$(ARCH) \
+ $(MAKE) -f $(MAKEFILE_RULES) \
DYLIB_ONLY=YES DYLIB_NAME=baz DYLIB_CXX_SOURCES=baz.cpp
include Makefile.rules
More information about the lldb-commits
mailing list