aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/commands/command/regex/echo_command.py
blob: 3fa17f14ab2f0b36b03d9a704f12bcdb07d3e323 (plain)
1
2
3
4
5
6
7
import lldb


def echo_command(debugger, args, result, dict):
    result.Print(args + "\n")
    result.SetStatus(lldb.eReturnStatusSuccessFinishResult)
    return True