Files
clang-p2996/lldb/test/Shell/ScriptInterpreter/Python/scripted_breakpoint.test
2021-07-09 13:25:10 -07:00

12 lines
345 B
Plaintext

# UNSUPPORTED: lldb-repro
#
# Test that the scripting language argument to "breakpoint command" is honored
# even if the global scripting language is different.
#
# RUN: cat %s | %lldb --script-language none 2>&1 | FileCheck %s
b main
breakpoint command add -s python
print("foo")
DONE
# CHECK: Enter your Python command(s). Type 'DONE' to end.