xref: /llvm-project/lldb/test/Shell/ScriptInterpreter/Python/Inputs/relative.split (revision 00bb397b0dc79fcad27bfe63456a2100039706f2)
1#--- magritte.in
2command script import magritte
3#--- magritte.py
4import lldb
5
6def magritte(debugger, command, result, internal_dict):
7    print("Ceci n'est pas une pipe")
8
9def __lldb_init_module(debugger, internal_dict):
10    debugger.HandleCommand('command script add -f magritte.magritte magritte')
11#--- zip.in
12command script import -c zip
13#--- zip.py
14import lldb
15
16def zip(debugger, command, result, internal_dict):
17    print("95126")
18
19def __lldb_init_module(debugger, internal_dict):
20    debugger.HandleCommand('command script add -f zip.zip zip')
21