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