[Lldb-commits] [lldb] [LLDB] Add DIL code for handling plain variable names. (PR #120971)
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Thu Mar 20 05:10:39 PDT 2025
================
@@ -0,0 +1,29 @@
+"""
+Make sure 'frame var' using DIL parser/evaultor works for local variables.
+"""
+
+import lldb
+from lldbsuite.test.lldbtest import *
+from lldbsuite.test.decorators import *
+from lldbsuite.test import lldbutil
+
+import os
+import shutil
+import time
+
+
+class TestFrameVarDILInstanceVariables(TestBase):
+ # If your test case doesn't stress debug info, then
+ # set this to true. That way it won't be run once for
+ # each debug info format.
+ NO_DEBUG_INFO_TESTCASE = True
+
+ def test_frame_var(self):
+ self.build()
+ lldbutil.run_to_source_breakpoint(
+ self, "Set a breakpoint here", lldb.SBFileSpec("main.cpp")
+ )
+
+ self.expect("settings set target.experimental.use-DIL true", substrs=[""])
+ self.expect_var_path("this", type="TestMethods *")
+ self.expect("frame variable 'c'", substrs=["(field_ = -1)"])
----------------
labath wrote:
```suggestion
self.expect_var_path("c", children=[ValueCheck(name="field_", value = "-1")])
```
https://github.com/llvm/llvm-project/pull/120971
More information about the lldb-commits
mailing list