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