Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / Shell / ScriptInterpreter / Python / Inputs / relative.split
blob7a5c89c51404a1d4c2e724ef8f4f08ae544d1649
1 #--- magritte.in
2 command script import magritte
3 #--- magritte.py
4 import lldb
6 def magritte(debugger, command, result, internal_dict):
7     print("Ceci n'est pas une pipe")
9 def __lldb_init_module(debugger, internal_dict):
10     debugger.HandleCommand('command script add -f magritte.magritte magritte')
11 #--- zip.in
12 command script import -c zip
13 #--- zip.py
14 import lldb
16 def zip(debugger, command, result, internal_dict):
17     print("95126")
19 def __lldb_init_module(debugger, internal_dict):
20     debugger.HandleCommand('command script add -f zip.zip zip')