[lldb] Fix Lua/watchpoint_callback.test on Apple SiliconAs Pavel pointed out, on Apple Silicon "b main" stops at a point afterthe variable has already been initialized. This patch updates the test
[lldb] Fix Lua/watchpoint_callback.test on Apple SiliconAs Pavel pointed out, on Apple Silicon "b main" stops at a point afterthe variable has already been initialized. This patch updates the testcase to avoids that. I've also split the test into separate files so itseasier to reproduce the individual scenarios without having to build anyshared state.
show more ...
[lldb/Lua] Support loading Lua modulesImplements the command script import command for Lua.Differential revision: https://reviews.llvm.org/D71825
[lldb/Lua] Make lldb.debugger et al available to LuaThe Python script interpreter makes the current debugger, target,process, thread and frame available to interactive scripting sessionsthrough c
[lldb/Lua] Make lldb.debugger et al available to LuaThe Python script interpreter makes the current debugger, target,process, thread and frame available to interactive scripting sessionsthrough convenience variables. This patch does the same for Lua.Differential revision: https://reviews.llvm.org/D71801