[Lldb-commits] [PATCH] D154843: [lldb] Disable TestNamespaceLookup in DWARF 5 + dSYM setting
Felipe de Azevedo Piovezan via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Jul 10 06:59:02 PDT 2023
fdeazeve created this revision.
Herald added a project: All.
fdeazeve requested review of this revision.
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.
The ordering in which functions are presented to the expression evaluator in
this test setting triggers a known bug in LLDB.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D154843
Files:
lldb/test/API/lang/cpp/namespace/TestNamespaceLookup.py
Index: lldb/test/API/lang/cpp/namespace/TestNamespaceLookup.py
===================================================================
--- lldb/test/API/lang/cpp/namespace/TestNamespaceLookup.py
+++ lldb/test/API/lang/cpp/namespace/TestNamespaceLookup.py
@@ -164,7 +164,11 @@
# Continue to BP_file_scope at file scope
self.runToBkpt("continue")
- self.expect_expr("func()", result_type="int", result_value="2")
+ # FIXME: In DWARF 5 with dsyms, the ordering of functions is slightly
+ # different, which also hits the same issues mentioned previously.
+ if (configuration.dwarf_version <= 4 or
+ self.getDebugInfo() == 'dwarf'):
+ self.expect_expr("func()", result_type="int", result_value="2")
# Continue to BP_ns_scope at ns scope
self.runToBkpt("continue")
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D154843.538626.patch
Type: text/x-patch
Size: 846 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20230710/f3e578b2/attachment.bin>
More information about the lldb-commits
mailing list