
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.
6 lines
198 B
Plaintext
6 lines
198 B
Plaintext
# RUN: cat %s | %lldb --script-language lua 2>&1 | FileCheck %s
|
|
script
|
|
debugger = lldb.SBDebugger.Create()
|
|
print("debugger is valid:", tostring(debugger:IsValid()))
|
|
# CHECK: debugger is valid: true
|