Sign in
llvm
/
llvm-project
/
lldb
/
dc0df6a4d9648b9f5fc73f8f603e4fec0cc07089
/
.
/
packages
/
Python
/
lldbsuite
/
test
/
commands
/
command
/
script_alias
/
tcsacmd.py
blob: 8d3248c27234bc0b7beb2d7b0ead0da54fbc603b [
file
] [
log
] [
blame
]
from
__future__
import
print_function
import
lldb
def
some_command_here
(
debugger
,
command
,
result
,
d
):
if
command
==
"a"
:
print
(
"Victory is mine"
,
file
=
result
)
return
True
else
:
print
(
"Sadness for all"
,
file
=
result
)
return
False