xref: /llvm-project/lldb/test/Shell/ScriptInterpreter/Python/scripted_breakpoint.test (revision 88591aa0ca7e4d99da353d49f91ea63e43fb55e0)
1# Test that the scripting language argument to "breakpoint command" is honored
2# even if the global scripting language is different.
3#
4# RUN: cat %s | %lldb --script-language none 2>&1 | FileCheck %s
5b main
6breakpoint command add -s python
7print("foo")
8DONE
9# CHECK: Enter your Python command(s). Type 'DONE' to end.
10