xref: /llvm-project/lldb/test/Shell/ScriptInterpreter/Python/scripted_breakpoint.test (revision 3338819b08faa7f23f65fb4e67154583984ebf5c)
1# UNSUPPORTED: lldb-repro
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