xref: /llvm-project/lldb/test/API/commands/command/script/py_import (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1*99451b44SJordan Rupprechtscript import sys, os
2*99451b44SJordan Rupprechtscript sys.path.append(os.path.join(os.getcwd(), os.pardir))
3*99451b44SJordan Rupprechtscript import welcome
4*99451b44SJordan Rupprechtscript import bug11569
5*99451b44SJordan Rupprechtcommand script add welcome --class welcome.WelcomeCommand
6*99451b44SJordan Rupprechtcommand script add targetname --class welcome.TargetnameCommand
7*99451b44SJordan Rupprechtcommand script add longwait --function welcome.print_wait_impl
8*99451b44SJordan Rupprechtcommand script import mysto.py --allow-reload
9*99451b44SJordan Rupprechtcommand script add tell_sync --function welcome.check_for_synchro --synchronicity sync
10*99451b44SJordan Rupprechtcommand script add tell_async --function welcome.check_for_synchro --synchronicity async
11*99451b44SJordan Rupprechtcommand script add tell_curr --function welcome.check_for_synchro --synchronicity curr
12*99451b44SJordan Rupprechtcommand script add takes_exe_ctx --function welcome.takes_exe_ctx
13*99451b44SJordan Rupprechtcommand script import decorated.py
14*99451b44SJordan Rupprecht
15*99451b44SJordan Rupprecht
16*99451b44SJordan Rupprechtcommand script import callables.py
17*99451b44SJordan Rupprecht
18*99451b44SJordan Rupprechtcommand script add -f callables.foobar foobar
19*99451b44SJordan Rupprechtcommand script add -f callables.foobar4 foobar4
20*99451b44SJordan Rupprechtcommand script add -f callables.vfoobar vfoobar
21*99451b44SJordan Rupprechtcommand script add -f callables.v5foobar v5foobar
22*99451b44SJordan Rupprecht
23*99451b44SJordan Rupprechtcommand script add -f callables.FooBar.sfoobar sfoobar
24*99451b44SJordan Rupprechtcommand script add -f callables.FooBar.cfoobar cfoobar
25*99451b44SJordan Rupprechtcommand script add -f callables.FooBarObj.ifoobar ifoobar
26*99451b44SJordan Rupprecht
27*99451b44SJordan Rupprechtcommand script add -f callables.FooBar.sfoobar4 sfoobar4
28*99451b44SJordan Rupprechtcommand script add -f callables.FooBar.cfoobar4 cfoobar4
29*99451b44SJordan Rupprechtcommand script add -f callables.FooBarObj.ifoobar4 ifoobar4
30*99451b44SJordan Rupprecht
31*99451b44SJordan Rupprechtcommand script add -f callables.FooBarObj ofoobar
32*99451b44SJordan Rupprechtcommand script add -f callables.FooBar4Obj ofoobar4
33