aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/Shell/ScriptInterpreter/Python/Inputs/relative.split
blob: 7a5c89c51404a1d4c2e724ef8f4f08ae544d1649 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#--- magritte.in
command script import magritte
#--- magritte.py
import lldb

def magritte(debugger, command, result, internal_dict):
    print("Ceci n'est pas une pipe")

def __lldb_init_module(debugger, internal_dict):
    debugger.HandleCommand('command script add -f magritte.magritte magritte')
#--- zip.in
command script import -c zip
#--- zip.py
import lldb

def zip(debugger, command, result, internal_dict):
    print("95126")

def __lldb_init_module(debugger, internal_dict):
    debugger.HandleCommand('command script add -f zip.zip zip')