• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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