[Lldb-commits] [lldb] 4139461 - [lldb] Fix REQUIRES for DWO relative path test
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Thu Aug 17 07:19:39 PDT 2023
Author: David Spickett
Date: 2023-08-17T14:19:27Z
New Revision: 4139461d4e7788128c2da5f77712b8d39898f189
URL: https://github.com/llvm/llvm-project/commit/4139461d4e7788128c2da5f77712b8d39898f189
DIFF: https://github.com/llvm/llvm-project/commit/4139461d4e7788128c2da5f77712b8d39898f189.diff
LOG: [lldb] Fix REQUIRES for DWO relative path test
This was "x86-registered-target" which seems to be false in this test
suite despite me having the x86 backend enabled. The other tests use just "x86"
and with that the test passes on my AArch64 machine fine.
Added:
Modified:
lldb/test/Shell/SymbolFile/DWARF/dwo-relative-path.s
Removed:
################################################################################
diff --git a/lldb/test/Shell/SymbolFile/DWARF/dwo-relative-path.s b/lldb/test/Shell/SymbolFile/DWARF/dwo-relative-path.s
index 58c61a4b577a60..f3d44576532bf0 100644
--- a/lldb/test/Shell/SymbolFile/DWARF/dwo-relative-path.s
+++ b/lldb/test/Shell/SymbolFile/DWARF/dwo-relative-path.s
@@ -1,7 +1,7 @@
# Test to verify LLDB searches for dwos with relative paths relative to the
# binary location, not relative to LLDB's launch location.
-# REQUIRES: x86-registered-target
+# REQUIRES: x86
# RUN: llvm-mc --filetype=obj --triple x86_64-pc-linux %s -o %t.o
# RUN: llvm-objcopy --split-dwo=%T/dwo-relative-path.dwo %t.o
More information about the lldb-commits
mailing list