summaryrefslogtreecommitdiff
path: root/lldb/test/Shell/ScriptInterpreter/Python/scripted_breakpoint.test
AgeCommit message (Collapse)Author
2024-10-31[lldb] Remove lldb-repro utilityJonas Devlieghere
Remove lldb-repro which was used to run the test suite against a reproducer. The corresponding functionality has been removed from LLDB so there's no need for the tool anymore.
2021-07-09[lldb] Drop REQUIRES where redundant because of lit.local.cfgJonas Devlieghere
2020-01-22[lldb/Test] Skip script interpreter tests reading from stdin for lldb-reproJonas Devlieghere
The reproducers currently only shadow the command interpreter. It would be possible to make it work for the Lua interpreter which uses the IOHandlerEditline under the hood, but the Python one runs a REPL in Python itself so there's no (straightforward) way to shadow that. Given that we already capture any API calls, this isn't super high on my list of priorities.
2019-12-21[lldb/Commands] Honor the scripting language passedJonas Devlieghere
This ensures that breakpoint command honors the scripting language passed with `-s`. Currently the argument ignores the actual language and only uses it to differentiate between lldb and script commands.