summaryrefslogtreecommitdiff
path: root/lldb/test/Shell/ScriptInterpreter/Lua/breakpoint_function_callback.test
AgeCommit message (Collapse)Author
2023-08-31[lldb] Fix test failure for breakpoint_function_callback.testMed Ismail Bennani
This should fix the test failure in breakpoint_function_callback.test since SBStructuredData can now display the content of SBStructuredData. Signed-off-by: Med Ismail Bennani <ismail@bennani.ma>
2021-07-09[lldb] Drop REQUIRES where redundant because of lit.local.cfgJonas Devlieghere
2021-04-20[lldb] Simplify check for nill value in breakpoint_function_callback.testJonas Devlieghere
2021-04-19[lldb] Update breakpoint_function_callback.test for different error messageJonas Devlieghere
Adjust for the Lua error message printed by Lua 5.4.3.
2021-01-25[lldb/Lua] add support for Lua function breakpointPedro Tammela
Adds support for running a Lua function when a breakpoint is hit. Example: breakpoint command add -s lua -F abc The above runs the Lua function 'abc' passing 2 arguments. 'frame', 'bp_loc' and 'extra_args'. A third parameter 'extra_args' is only present when there is structured data declared in the command line. Example: breakpoint command add -s lua -F abc -k foo -v bar Differential Revision: https://reviews.llvm.org/D93649