
Remove lldb-repro which was used to run the test suite against a reproducer. The corresponding functionality has been removed from LLDB so there's no need for the tool anymore.
10 lines
317 B
Plaintext
10 lines
317 B
Plaintext
# 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.
|