Summary: Moves lldbsuite tests to lldb/test/API.
This is a largely mechanical change, moved with the following steps:
```
rm lldb/test/API/testcases
mkdir -p lldb/test/API/{test_runner/test,tools/lldb-{server,vscode}}
mv lldb/packages/Python/lldbsuite/test/test_runner/test lldb/test/API/test_runner
for d in $(find lldb/packages/Python/lldbsuite/test/* -maxdepth 0 -type d | egrep -v "make|plugins|test_runner|tools"); do mv $d lldb/test/API; done
for d in $(find lldb/packages/Python/lldbsuite/test/tools/lldb-vscode -maxdepth 1 -mindepth 1 | grep -v ".py"); do mv $d lldb/test/API/tools/lldb-vscode; done
for d in $(find lldb/packages/Python/lldbsuite/test/tools/lldb-server -maxdepth 1 -mindepth 1 | egrep -v "gdbremote_testcase.py|lldbgdbserverutils.py|socket_packet_pump.py"); do mv $d lldb/test/API/tools/lldb-server; done
```
lldb/packages/Python/lldbsuite/__init__.py and lldb/test/API/lit.cfg.py were also updated with the new directory structure.
Reviewers: labath, JDevlieghere
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D71151
33 lines
1.4 KiB
Plaintext
33 lines
1.4 KiB
Plaintext
script import sys, os
|
|
script sys.path.append(os.path.join(os.getcwd(), os.pardir))
|
|
script import welcome
|
|
script import bug11569
|
|
command script add welcome --class welcome.WelcomeCommand
|
|
command script add targetname --class welcome.TargetnameCommand
|
|
command script add longwait --function welcome.print_wait_impl
|
|
command script import mysto.py --allow-reload
|
|
command script add tell_sync --function welcome.check_for_synchro --synchronicity sync
|
|
command script add tell_async --function welcome.check_for_synchro --synchronicity async
|
|
command script add tell_curr --function welcome.check_for_synchro --synchronicity curr
|
|
command script add takes_exe_ctx --function welcome.takes_exe_ctx
|
|
command script import decorated.py
|
|
|
|
|
|
command script import callables.py
|
|
|
|
command script add -f callables.foobar foobar
|
|
command script add -f callables.foobar4 foobar4
|
|
command script add -f callables.vfoobar vfoobar
|
|
command script add -f callables.v5foobar v5foobar
|
|
|
|
command script add -f callables.FooBar.sfoobar sfoobar
|
|
command script add -f callables.FooBar.cfoobar cfoobar
|
|
command script add -f callables.FooBarObj.ifoobar ifoobar
|
|
|
|
command script add -f callables.FooBar.sfoobar4 sfoobar4
|
|
command script add -f callables.FooBar.cfoobar4 cfoobar4
|
|
command script add -f callables.FooBarObj.ifoobar4 ifoobar4
|
|
|
|
command script add -f callables.FooBarObj ofoobar
|
|
command script add -f callables.FooBar4Obj ofoobar4
|