[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 07:10:40 PDT 2023


This revision was automatically updated to reflect the committed changes.
Closed by commit rG6890ad3f41c5: [lldb] Disable TestNamespaceLookup in DWARF 5 + dSYM setting (authored by fdeazeve).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D154843/new/

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.538631.patch
Type: text/x-patch
Size: 846 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20230710/cbc7b8c5/attachment.bin>


More information about the lldb-commits mailing list