diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-09-18 00:30:01 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-09-18 00:30:01 +0000 |
commit | 20b52c33ba3960340ecf326314517091b8ec98f4 (patch) | |
tree | d70612f82a6ee1469f6c7fe10e3b519a6a8c428e /lldb/packages/Python/lldbsuite/test/python_api | |
parent | 6e353b4df3aa452ed4741a5e5caea02b1a876d8c (diff) | |
download | bcm5719-llvm-20b52c33ba3960340ecf326314517091b8ec98f4.tar.gz bcm5719-llvm-20b52c33ba3960340ecf326314517091b8ec98f4.zip |
[ScriptInterpreter] Limit LLDB's globals to interactive mode.
Jim pointed out that the LLDB global variables should only be available
in interactive mode. When used from a command for example, their values
might be stale or not at all what the user expects. Therefore we want to
explicitly make these variables unavailable.
Differential revision: https://reviews.llvm.org/D67685
llvm-svn: 372192
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/python_api')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/python_api/sbvalue_const_addrof/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/python_api/sbvalue_const_addrof/main.cpp b/lldb/packages/Python/lldbsuite/test/python_api/sbvalue_const_addrof/main.cpp index eb9c8e0c142..318a45bc21a 100644 --- a/lldb/packages/Python/lldbsuite/test/python_api/sbvalue_const_addrof/main.cpp +++ b/lldb/packages/Python/lldbsuite/test/python_api/sbvalue_const_addrof/main.cpp @@ -28,7 +28,7 @@ ThreadInfo *g_thread_list_ptr = &g_thread1; int main (int argc, char const *argv[], char const *envp[]) { printf ("g_thread_list is %p\n", g_thread_list_ptr); - return 0; //% v = lldb.target.FindFirstGlobalVariable('g_thread_list_ptr') + return 0; //% v = self.dbg.GetSelectedTarget().FindFirstGlobalVariable('g_thread_list_ptr') //% v_gla = v.GetChildMemberWithName('regs').GetLoadAddress() //% v_aof = v.GetChildMemberWithName('regs').AddressOf().GetValueAsUnsigned(lldb.LLDB_INVALID_ADDRESS) //% expr = '(%s)0x%x' % (v.GetType().GetName(), v.GetValueAsUnsigned(0)) |