[Lldb-commits] [lldb] 99451b4 - [lldb][test] Remove symlink for API tests.

Jordan Rupprecht via lldb-commits lldb-commits at lists.llvm.org
Tue Feb 11 10:05:10 PST 2020


Author: Jordan Rupprecht
Date: 2020-02-11T10:03:53-08:00
New Revision: 99451b4453688a94c6014cac233d371ab4cc342d

URL: https://github.com/llvm/llvm-project/commit/99451b4453688a94c6014cac233d371ab4cc342d
DIFF: https://github.com/llvm/llvm-project/commit/99451b4453688a94c6014cac233d371ab4cc342d.diff

LOG: [lldb][test] Remove symlink for API tests.

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

Added: 
    lldb/test/API/android/platform/Makefile
    lldb/test/API/android/platform/TestDefaultCacheLineSize.py
    lldb/test/API/android/platform/main.cpp
    lldb/test/API/api/check_public_api_headers/Makefile
    lldb/test/API/api/check_public_api_headers/TestPublicAPIHeaders.py
    lldb/test/API/api/check_public_api_headers/main.cpp.template
    lldb/test/API/api/command-return-object/Makefile
    lldb/test/API/api/command-return-object/TestSBCommandReturnObject.py
    lldb/test/API/api/command-return-object/main.cpp
    lldb/test/API/api/listeners/Makefile
    lldb/test/API/api/listeners/TestListener.py
    lldb/test/API/api/listeners/main.c
    lldb/test/API/api/log/TestAPILog.py
    lldb/test/API/api/multiple-debuggers/.categories
    lldb/test/API/api/multiple-debuggers/Makefile
    lldb/test/API/api/multiple-debuggers/TestMultipleDebuggers.py
    lldb/test/API/api/multiple-debuggers/multi-process-driver.cpp
    lldb/test/API/api/multiple-debuggers/testprog.cpp
    lldb/test/API/api/multiple-targets/Makefile
    lldb/test/API/api/multiple-targets/TestMultipleTargets.py
    lldb/test/API/api/multiple-targets/main.cpp
    lldb/test/API/api/multithreaded/Makefile
    lldb/test/API/api/multithreaded/TestMultithreaded.py
    lldb/test/API/api/multithreaded/common.h
    lldb/test/API/api/multithreaded/driver.cpp.template
    lldb/test/API/api/multithreaded/inferior.cpp
    lldb/test/API/api/multithreaded/listener_test.cpp.template
    lldb/test/API/api/multithreaded/test_breakpoint_callback.cpp.template
    lldb/test/API/api/multithreaded/test_listener_event_description.cpp.template
    lldb/test/API/api/multithreaded/test_listener_event_process_state.cpp.template
    lldb/test/API/api/multithreaded/test_listener_resume.cpp.template
    lldb/test/API/arm/breakpoint-it/Makefile
    lldb/test/API/arm/breakpoint-it/TestBreakpointIt.py
    lldb/test/API/arm/breakpoint-it/main.c
    lldb/test/API/arm/breakpoint-thumb-codesection/Makefile
    lldb/test/API/arm/breakpoint-thumb-codesection/TestBreakpointThumbCodesection.py
    lldb/test/API/arm/breakpoint-thumb-codesection/main.c
    lldb/test/API/arm/emulation/TestEmulations.py
    lldb/test/API/arm/emulation/new-test-files/test-add-1-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-add-1-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-add-10-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-add-11-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-add-12-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-add-2-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-add-2-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-add-3-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-add-3-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-add-4-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-add-4-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-add-5-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-add-5-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-add-6-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-add-6-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-add-7-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-add-7-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-add-8-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-add-8-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-add-9-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-bic-1-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-bic-1-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldmia-1-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldmia-1-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldmia-2-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldmia-2-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldmia-3-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldmia-3-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldr-1-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldr-1-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldr-10-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldr-11-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldr-12-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldr-2-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldr-2-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldr-3-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldr-3-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldr-4-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldr-4-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldr-5-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldr-5-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldr-6-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldr-6-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldr-7-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldr-7-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldr-8-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldr-8-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldr-9-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldrd-1-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldrd-1-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldrd-2-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldrh-1-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldrsh-1-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-ldrsh-2-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-1-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-1-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-10-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-11-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-12-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-13-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-14-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-15-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-16-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-17-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-18-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-19-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-2-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-2-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-20-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-21-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-22-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-23-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-24-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-25-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-26-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-27-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-28-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-29-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-3-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-3-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-30-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-31-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-4-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-4-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-5-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-5-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-6-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-6-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-7-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-8-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mov-9-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-moveq-1-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-movs-1-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-mvn-1-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-mvn-1-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mvn-2-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-mvn-2-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mvn-3-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-mvn-3-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-mvn-4-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-mvn-4-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-pop-1-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-pop-1-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-pop-2-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-pop-2-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-pop-3-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-push-1-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-push-1-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-push-2-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-push-2-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-push-3-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-push-3-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-str-1-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-str-1-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-str-2-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-str-2-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-str-3-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-str-3-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-str-4-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-str-4-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-str-5-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-strb-1-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-strb-2-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-strbt-1-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-strd-1-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-strt-1-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-sub-1-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-sub-1-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-sub-10-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-sub-2-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-sub-2-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-sub-3-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-sub-3-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-sub-4-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-sub-4-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-sub-5-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-sub-5-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-sub-6-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-sub-6-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-sub-8-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-sub-9-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-subs-1-arm.dat
    lldb/test/API/arm/emulation/new-test-files/test-subs-1-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-subs-10-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-subs-2-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-subs-3-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-subs-4-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-subs-5-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-subs-6-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-subs-8-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-subs-9-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-vpop-1-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-vpop-2-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-vpop-3-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-vpush-1-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-vpush-2-thumb.dat
    lldb/test/API/arm/emulation/new-test-files/test-vpush-3-thumb.dat
    lldb/test/API/benchmarks/continue/Makefile
    lldb/test/API/benchmarks/continue/TestBenchmarkContinue.py
    lldb/test/API/benchmarks/continue/main.cpp
    lldb/test/API/benchmarks/expression/Makefile
    lldb/test/API/benchmarks/expression/TestExpressionCmd.py
    lldb/test/API/benchmarks/expression/TestRepeatedExprs.py
    lldb/test/API/benchmarks/expression/main.cpp
    lldb/test/API/benchmarks/frame_variable/TestFrameVariableResponse.py
    lldb/test/API/benchmarks/libcxxlist/Makefile
    lldb/test/API/benchmarks/libcxxlist/TestBenchmarkLibcxxList.py
    lldb/test/API/benchmarks/libcxxlist/main.cpp
    lldb/test/API/benchmarks/libcxxmap/Makefile
    lldb/test/API/benchmarks/libcxxmap/TestBenchmarkLibcxxMap.py
    lldb/test/API/benchmarks/libcxxmap/main.cpp
    lldb/test/API/benchmarks/startup/TestStartupDelays.py
    lldb/test/API/benchmarks/stepping/TestSteppingSpeed.py
    lldb/test/API/benchmarks/turnaround/TestCompileRunToBreakpointTurnaround.py
    lldb/test/API/commands/add-dsym/uuid/Makefile
    lldb/test/API/commands/add-dsym/uuid/TestAddDsymCommand.py
    lldb/test/API/commands/add-dsym/uuid/main.cpp.template
    lldb/test/API/commands/apropos/basic/TestApropos.py
    lldb/test/API/commands/apropos/with-process/Makefile
    lldb/test/API/commands/apropos/with-process/TestAproposWithProcess.py
    lldb/test/API/commands/apropos/with-process/main.cpp
    lldb/test/API/commands/breakpoint/command/list/TestBreakpointCommandList.py
    lldb/test/API/commands/breakpoint/command/list/a.yaml
    lldb/test/API/commands/command/.categories
    lldb/test/API/commands/command/delete/TestCommandDelete.py
    lldb/test/API/commands/command/history/TestCommandHistory.py
    lldb/test/API/commands/command/invalid-args/TestInvalidArgsCommand.py
    lldb/test/API/commands/command/nested_alias/Makefile
    lldb/test/API/commands/command/nested_alias/TestNestedAlias.py
    lldb/test/API/commands/command/nested_alias/main.cpp
    lldb/test/API/commands/command/script/Makefile
    lldb/test/API/commands/command/script/TestCommandScript.py
    lldb/test/API/commands/command/script/bug11569.py
    lldb/test/API/commands/command/script/callables.py
    lldb/test/API/commands/command/script/decorated.py
    lldb/test/API/commands/command/script/import/Makefile
    lldb/test/API/commands/command/script/import/TestImport.py
    lldb/test/API/commands/command/script/import/bar/bar.py
    lldb/test/API/commands/command/script/import/bar/barutil.py
    lldb/test/API/commands/command/script/import/dummymodule.py
    lldb/test/API/commands/command/script/import/foo/bar/foobar.py
    lldb/test/API/commands/command/script/import/foo/foo.py
    lldb/test/API/commands/command/script/import/foo/foo2.py
    lldb/test/API/commands/command/script/import/main.c
    lldb/test/API/commands/command/script/import/rdar-12586188/Makefile
    lldb/test/API/commands/command/script/import/rdar-12586188/TestRdar12586188.py
    lldb/test/API/commands/command/script/import/rdar-12586188/fail12586188.py
    lldb/test/API/commands/command/script/import/rdar-12586188/fail212586188.py
    lldb/test/API/commands/command/script/import/thepackage/TPunitA.py
    lldb/test/API/commands/command/script/import/thepackage/TPunitB.py
    lldb/test/API/commands/command/script/import/thepackage/__init__.py
    lldb/test/API/commands/command/script/main.cpp
    lldb/test/API/commands/command/script/mysto.py
    lldb/test/API/commands/command/script/py_import
    lldb/test/API/commands/command/script/welcome.py
    lldb/test/API/commands/command/script_alias/TestCommandScriptAlias.py
    lldb/test/API/commands/command/script_alias/tcsacmd.py
    lldb/test/API/commands/command/source/.lldb
    lldb/test/API/commands/command/source/TestCommandSource.py
    lldb/test/API/commands/command/source/commands.txt
    lldb/test/API/commands/command/source/my.py
    lldb/test/API/commands/disassemble/basic/Makefile
    lldb/test/API/commands/disassemble/basic/TestDisassembleBreakpoint.py
    lldb/test/API/commands/disassemble/basic/TestFrameDisassemble.py
    lldb/test/API/commands/disassemble/basic/main.cpp
    lldb/test/API/commands/expression/.categories
    lldb/test/API/commands/expression/anonymous-struct/Makefile
    lldb/test/API/commands/expression/anonymous-struct/TestCallUserAnonTypedef.py
    lldb/test/API/commands/expression/anonymous-struct/main.cpp
    lldb/test/API/commands/expression/argument_passing_restrictions/Makefile
    lldb/test/API/commands/expression/argument_passing_restrictions/TestArgumentPassingRestrictions.py
    lldb/test/API/commands/expression/argument_passing_restrictions/main.cpp
    lldb/test/API/commands/expression/calculator_mode/TestCalculatorMode.py
    lldb/test/API/commands/expression/call-function/Makefile
    lldb/test/API/commands/expression/call-function/TestCallBuiltinFunction.py
    lldb/test/API/commands/expression/call-function/TestCallStdStringFunction.py
    lldb/test/API/commands/expression/call-function/TestCallStopAndContinue.py
    lldb/test/API/commands/expression/call-function/TestCallUserDefinedFunction.py
    lldb/test/API/commands/expression/call-function/main.cpp
    lldb/test/API/commands/expression/call-restarts/Makefile
    lldb/test/API/commands/expression/call-restarts/TestCallThatRestarts.py
    lldb/test/API/commands/expression/call-restarts/lotta-signals.c
    lldb/test/API/commands/expression/call-throws/Makefile
    lldb/test/API/commands/expression/call-throws/TestCallThatThrows.py
    lldb/test/API/commands/expression/call-throws/call-throws.m
    lldb/test/API/commands/expression/cast_int_to_anonymous_enum/Makefile
    lldb/test/API/commands/expression/cast_int_to_anonymous_enum/TestCastIntToAnonymousEnum.py
    lldb/test/API/commands/expression/cast_int_to_anonymous_enum/main.cpp
    lldb/test/API/commands/expression/char/Makefile
    lldb/test/API/commands/expression/char/TestExprsChar.py
    lldb/test/API/commands/expression/char/main.cpp
    lldb/test/API/commands/expression/class_template_specialization_empty_pack/Makefile
    lldb/test/API/commands/expression/class_template_specialization_empty_pack/TestClassTemplateSpecializationParametersHandling.py
    lldb/test/API/commands/expression/class_template_specialization_empty_pack/main.cpp
    lldb/test/API/commands/expression/codegen-crash-typedefdecl-not-in_declcontext/TestCodegenCrashTypedefDeclNotInDeclContext.py
    lldb/test/API/commands/expression/codegen-crash-typedefdecl-not-in_declcontext/main.cpp
    lldb/test/API/commands/expression/completion-crash-incomplete-record/TestCompletionCrashIncompleteRecord.py
    lldb/test/API/commands/expression/completion-crash-incomplete-record/main.cpp
    lldb/test/API/commands/expression/completion-crash-invalid-iterator/Makefile
    lldb/test/API/commands/expression/completion-crash-invalid-iterator/TestInvalidIteratorCompletionCrash.py
    lldb/test/API/commands/expression/completion-crash-invalid-iterator/main.cpp
    lldb/test/API/commands/expression/completion-in-lambda-and-unnamed-class/TestCompletionInLambdaAndUnnamedClass.py
    lldb/test/API/commands/expression/completion-in-lambda-and-unnamed-class/main.cpp
    lldb/test/API/commands/expression/completion/.categories
    lldb/test/API/commands/expression/completion/Makefile
    lldb/test/API/commands/expression/completion/TestExprCompletion.py
    lldb/test/API/commands/expression/completion/main.cpp
    lldb/test/API/commands/expression/completion/other.cpp
    lldb/test/API/commands/expression/context-object-objc/Makefile
    lldb/test/API/commands/expression/context-object-objc/TestContextObjectObjc.py
    lldb/test/API/commands/expression/context-object-objc/main.m
    lldb/test/API/commands/expression/context-object/Makefile
    lldb/test/API/commands/expression/context-object/TestContextObject.py
    lldb/test/API/commands/expression/context-object/main.cpp
    lldb/test/API/commands/expression/deleting-implicit-copy-constructor/TestDeletingImplicitCopyConstructor.py
    lldb/test/API/commands/expression/deleting-implicit-copy-constructor/main.cpp
    lldb/test/API/commands/expression/diagnostics/Makefile
    lldb/test/API/commands/expression/diagnostics/TestExprDiagnostics.py
    lldb/test/API/commands/expression/diagnostics/main.cpp
    lldb/test/API/commands/expression/dollar-in-variable/TestDollarInVariable.py
    lldb/test/API/commands/expression/dollar-in-variable/main.c
    lldb/test/API/commands/expression/dont_allow_jit/Makefile
    lldb/test/API/commands/expression/dont_allow_jit/TestAllowJIT.py
    lldb/test/API/commands/expression/dont_allow_jit/main.c
    lldb/test/API/commands/expression/entry-bp/Makefile
    lldb/test/API/commands/expression/entry-bp/TestExprEntryBP.py
    lldb/test/API/commands/expression/entry-bp/main.c
    lldb/test/API/commands/expression/expr-in-syscall/Makefile
    lldb/test/API/commands/expression/expr-in-syscall/TestExpressionInSyscall.py
    lldb/test/API/commands/expression/expr-in-syscall/main.cpp
    lldb/test/API/commands/expression/fixits/Makefile
    lldb/test/API/commands/expression/fixits/TestFixIts.py
    lldb/test/API/commands/expression/fixits/main.cpp
    lldb/test/API/commands/expression/formatters/Makefile
    lldb/test/API/commands/expression/formatters/TestFormatters.py
    lldb/test/API/commands/expression/formatters/foosynth.py
    lldb/test/API/commands/expression/formatters/formatters.py
    lldb/test/API/commands/expression/formatters/main.cpp
    lldb/test/API/commands/expression/function_template_specialization_temp_args/Makefile
    lldb/test/API/commands/expression/function_template_specialization_temp_args/TestFunctionTemplateSpecializationTempArgs.py
    lldb/test/API/commands/expression/function_template_specialization_temp_args/main.cpp
    lldb/test/API/commands/expression/ignore-artificial-constructors/TestIgnoreArtificialConstructors.py
    lldb/test/API/commands/expression/ignore-artificial-constructors/main.cpp
    lldb/test/API/commands/expression/import-std-module/basic/Makefile
    lldb/test/API/commands/expression/import-std-module/basic/TestImportStdModule.py
    lldb/test/API/commands/expression/import-std-module/basic/main.cpp
    lldb/test/API/commands/expression/import-std-module/conflicts/Makefile
    lldb/test/API/commands/expression/import-std-module/conflicts/TestStdModuleWithConflicts.py
    lldb/test/API/commands/expression/import-std-module/conflicts/main.cpp
    lldb/test/API/commands/expression/import-std-module/deque-basic/Makefile
    lldb/test/API/commands/expression/import-std-module/deque-basic/TestDequeFromStdModule.py
    lldb/test/API/commands/expression/import-std-module/deque-basic/main.cpp
    lldb/test/API/commands/expression/import-std-module/deque-dbg-info-content/Makefile
    lldb/test/API/commands/expression/import-std-module/deque-dbg-info-content/TestDbgInfoContentDequeFromStdModule.py
    lldb/test/API/commands/expression/import-std-module/deque-dbg-info-content/main.cpp
    lldb/test/API/commands/expression/import-std-module/empty-module/Makefile
    lldb/test/API/commands/expression/import-std-module/empty-module/TestEmptyStdModule.py
    lldb/test/API/commands/expression/import-std-module/empty-module/main.cpp
    lldb/test/API/commands/expression/import-std-module/empty-module/root/usr/include/c++/v1/algorithm
    lldb/test/API/commands/expression/import-std-module/empty-module/root/usr/include/c++/v1/module.modulemap
    lldb/test/API/commands/expression/import-std-module/empty-module/root/usr/include/libc_header.h
    lldb/test/API/commands/expression/import-std-module/forward_list-dbg-info-content/Makefile
    lldb/test/API/commands/expression/import-std-module/forward_list-dbg-info-content/TestDbgInfoContentForwardListFromStdModule.py
    lldb/test/API/commands/expression/import-std-module/forward_list-dbg-info-content/main.cpp
    lldb/test/API/commands/expression/import-std-module/forward_list/Makefile
    lldb/test/API/commands/expression/import-std-module/forward_list/TestForwardListFromStdModule.py
    lldb/test/API/commands/expression/import-std-module/forward_list/main.cpp
    lldb/test/API/commands/expression/import-std-module/list-dbg-info-content/Makefile
    lldb/test/API/commands/expression/import-std-module/list-dbg-info-content/TestDbgInfoContentListFromStdModule.py
    lldb/test/API/commands/expression/import-std-module/list-dbg-info-content/main.cpp
    lldb/test/API/commands/expression/import-std-module/list/Makefile
    lldb/test/API/commands/expression/import-std-module/list/TestListFromStdModule.py
    lldb/test/API/commands/expression/import-std-module/list/main.cpp
    lldb/test/API/commands/expression/import-std-module/no-std-module/Makefile
    lldb/test/API/commands/expression/import-std-module/no-std-module/TestMissingStdModule.py
    lldb/test/API/commands/expression/import-std-module/no-std-module/main.cpp
    lldb/test/API/commands/expression/import-std-module/queue/Makefile
    lldb/test/API/commands/expression/import-std-module/queue/TestQueueFromStdModule.py
    lldb/test/API/commands/expression/import-std-module/queue/main.cpp
    lldb/test/API/commands/expression/import-std-module/shared_ptr-dbg-info-content/Makefile
    lldb/test/API/commands/expression/import-std-module/shared_ptr-dbg-info-content/TestSharedPtrDbgInfoContentFromStdModule.py
    lldb/test/API/commands/expression/import-std-module/shared_ptr-dbg-info-content/main.cpp
    lldb/test/API/commands/expression/import-std-module/shared_ptr/Makefile
    lldb/test/API/commands/expression/import-std-module/shared_ptr/TestSharedPtrFromStdModule.py
    lldb/test/API/commands/expression/import-std-module/shared_ptr/main.cpp
    lldb/test/API/commands/expression/import-std-module/stack/Makefile
    lldb/test/API/commands/expression/import-std-module/stack/TestStackFromStdModule.py
    lldb/test/API/commands/expression/import-std-module/stack/main.cpp
    lldb/test/API/commands/expression/import-std-module/sysroot/Makefile
    lldb/test/API/commands/expression/import-std-module/sysroot/TestStdModuleSysroot.py
    lldb/test/API/commands/expression/import-std-module/sysroot/main.cpp
    lldb/test/API/commands/expression/import-std-module/sysroot/root/usr/include/c++/v1/algorithm
    lldb/test/API/commands/expression/import-std-module/sysroot/root/usr/include/c++/v1/module.modulemap
    lldb/test/API/commands/expression/import-std-module/sysroot/root/usr/include/libc_header.h
    lldb/test/API/commands/expression/import-std-module/unique_ptr-dbg-info-content/Makefile
    lldb/test/API/commands/expression/import-std-module/unique_ptr-dbg-info-content/TestUniquePtrDbgInfoContent.py
    lldb/test/API/commands/expression/import-std-module/unique_ptr-dbg-info-content/main.cpp
    lldb/test/API/commands/expression/import-std-module/unique_ptr/Makefile
    lldb/test/API/commands/expression/import-std-module/unique_ptr/TestUniquePtrFromStdModule.py
    lldb/test/API/commands/expression/import-std-module/unique_ptr/main.cpp
    lldb/test/API/commands/expression/import-std-module/vector-bool/Makefile
    lldb/test/API/commands/expression/import-std-module/vector-bool/TestVectorBoolFromStdModule.py
    lldb/test/API/commands/expression/import-std-module/vector-bool/main.cpp
    lldb/test/API/commands/expression/import-std-module/vector-dbg-info-content/Makefile
    lldb/test/API/commands/expression/import-std-module/vector-dbg-info-content/TestDbgInfoContentVectorFromStdModule.py
    lldb/test/API/commands/expression/import-std-module/vector-dbg-info-content/main.cpp
    lldb/test/API/commands/expression/import-std-module/vector-of-vectors/Makefile
    lldb/test/API/commands/expression/import-std-module/vector-of-vectors/TestVectorOfVectorsFromStdModule.py
    lldb/test/API/commands/expression/import-std-module/vector-of-vectors/main.cpp
    lldb/test/API/commands/expression/import-std-module/vector/Makefile
    lldb/test/API/commands/expression/import-std-module/vector/TestVectorFromStdModule.py
    lldb/test/API/commands/expression/import-std-module/vector/main.cpp
    lldb/test/API/commands/expression/import-std-module/weak_ptr-dbg-info-content/Makefile
    lldb/test/API/commands/expression/import-std-module/weak_ptr-dbg-info-content/TestDbgInfoContentWeakPtrFromStdModule.py
    lldb/test/API/commands/expression/import-std-module/weak_ptr-dbg-info-content/main.cpp
    lldb/test/API/commands/expression/import-std-module/weak_ptr/Makefile
    lldb/test/API/commands/expression/import-std-module/weak_ptr/TestWeakPtrFromStdModule.py
    lldb/test/API/commands/expression/import-std-module/weak_ptr/main.cpp
    lldb/test/API/commands/expression/import_builtin_fileid/Makefile
    lldb/test/API/commands/expression/import_builtin_fileid/TestImportBuiltinFileID.py
    lldb/test/API/commands/expression/import_builtin_fileid/main.m
    lldb/test/API/commands/expression/inline-namespace/Makefile
    lldb/test/API/commands/expression/inline-namespace/TestInlineNamespace.py
    lldb/test/API/commands/expression/inline-namespace/main.cpp
    lldb/test/API/commands/expression/invalid-args/TestInvalidArgsExpression.py
    lldb/test/API/commands/expression/ir-interpreter-phi-nodes/Makefile
    lldb/test/API/commands/expression/ir-interpreter-phi-nodes/TestIRInterpreterPHINodes.py
    lldb/test/API/commands/expression/ir-interpreter-phi-nodes/main.cpp
    lldb/test/API/commands/expression/ir-interpreter/Makefile
    lldb/test/API/commands/expression/ir-interpreter/TestIRInterpreter.py
    lldb/test/API/commands/expression/ir-interpreter/main.c
    lldb/test/API/commands/expression/issue_11588/Makefile
    lldb/test/API/commands/expression/issue_11588/Test11588.py
    lldb/test/API/commands/expression/issue_11588/main.cpp
    lldb/test/API/commands/expression/issue_11588/s11588.py
    lldb/test/API/commands/expression/macros/Makefile
    lldb/test/API/commands/expression/macros/TestMacros.py
    lldb/test/API/commands/expression/macros/macro1.h
    lldb/test/API/commands/expression/macros/macro2.h
    lldb/test/API/commands/expression/macros/main.cpp
    lldb/test/API/commands/expression/multiline-completion/Makefile
    lldb/test/API/commands/expression/multiline-completion/TestMultilineCompletion.py
    lldb/test/API/commands/expression/multiline-completion/main.c
    lldb/test/API/commands/expression/multiline-navigation/TestMultilineNavigation.py
    lldb/test/API/commands/expression/namespace_local_var_same_name_cpp_and_c/Makefile
    lldb/test/API/commands/expression/namespace_local_var_same_name_cpp_and_c/TestNamespaceLocalVarSameNameCppAndC.py
    lldb/test/API/commands/expression/namespace_local_var_same_name_cpp_and_c/main.cpp
    lldb/test/API/commands/expression/namespace_local_var_same_name_obj_c/Makefile
    lldb/test/API/commands/expression/namespace_local_var_same_name_obj_c/TestNamespaceLocalVarSameNameObjC.py
    lldb/test/API/commands/expression/namespace_local_var_same_name_obj_c/main.mm
    lldb/test/API/commands/expression/namespace_local_var_same_name_obj_c/util.mm
    lldb/test/API/commands/expression/no-deadlock/Makefile
    lldb/test/API/commands/expression/no-deadlock/TestExprDoesntBlock.py
    lldb/test/API/commands/expression/no-deadlock/locking.cpp
    lldb/test/API/commands/expression/options/Makefile
    lldb/test/API/commands/expression/options/TestExprOptions.py
    lldb/test/API/commands/expression/options/foo.cpp
    lldb/test/API/commands/expression/options/main.cpp
    lldb/test/API/commands/expression/persist_objc_pointeetype/Makefile
    lldb/test/API/commands/expression/persist_objc_pointeetype/TestPersistObjCPointeeType.py
    lldb/test/API/commands/expression/persist_objc_pointeetype/main.m
    lldb/test/API/commands/expression/persistent_ptr_update/Makefile
    lldb/test/API/commands/expression/persistent_ptr_update/TestPersistentPtrUpdate.py
    lldb/test/API/commands/expression/persistent_ptr_update/main.c
    lldb/test/API/commands/expression/persistent_types/Makefile
    lldb/test/API/commands/expression/persistent_types/TestNestedPersistentTypes.py
    lldb/test/API/commands/expression/persistent_types/TestPersistentTypes.py
    lldb/test/API/commands/expression/persistent_types/main.c
    lldb/test/API/commands/expression/persistent_variables/Makefile
    lldb/test/API/commands/expression/persistent_variables/TestPersistentVariables.py
    lldb/test/API/commands/expression/persistent_variables/main.c
    lldb/test/API/commands/expression/po_verbosity/Makefile
    lldb/test/API/commands/expression/po_verbosity/TestPoVerbosity.py
    lldb/test/API/commands/expression/po_verbosity/main.m
    lldb/test/API/commands/expression/pr35310/Makefile
    lldb/test/API/commands/expression/pr35310/TestExprsBug35310.py
    lldb/test/API/commands/expression/pr35310/main.cpp
    lldb/test/API/commands/expression/radar_8638051/Makefile
    lldb/test/API/commands/expression/radar_8638051/Test8638051.py
    lldb/test/API/commands/expression/radar_8638051/main.c
    lldb/test/API/commands/expression/radar_9531204/Makefile
    lldb/test/API/commands/expression/radar_9531204/TestPrintfAfterUp.py
    lldb/test/API/commands/expression/radar_9531204/main.c
    lldb/test/API/commands/expression/radar_9673664/Makefile
    lldb/test/API/commands/expression/radar_9673664/TestExprHelpExamples.py
    lldb/test/API/commands/expression/radar_9673664/main.c
    lldb/test/API/commands/expression/rdar42038760/TestScalarURem.py
    lldb/test/API/commands/expression/rdar42038760/main.c
    lldb/test/API/commands/expression/rdar44436068/Test128BitsInteger.py
    lldb/test/API/commands/expression/rdar44436068/main.c
    lldb/test/API/commands/expression/regression-access-function-template-in-record/TestRegressionAccessFunctionTemplateInRecord.py
    lldb/test/API/commands/expression/regression-access-function-template-in-record/main.cpp
    lldb/test/API/commands/expression/save_jit_objects/Makefile
    lldb/test/API/commands/expression/save_jit_objects/TestSaveJITObjects.py
    lldb/test/API/commands/expression/save_jit_objects/main.c
    lldb/test/API/commands/expression/scoped_enums/Makefile
    lldb/test/API/commands/expression/scoped_enums/TestScopedEnumType.py
    lldb/test/API/commands/expression/scoped_enums/main.cpp
    lldb/test/API/commands/expression/static-initializers/Makefile
    lldb/test/API/commands/expression/static-initializers/TestStaticInitializers.py
    lldb/test/API/commands/expression/static-initializers/main.cpp
    lldb/test/API/commands/expression/test/Makefile
    lldb/test/API/commands/expression/test/TestExprs.py
    lldb/test/API/commands/expression/test/TestExprs2.py
    lldb/test/API/commands/expression/test/main.cpp
    lldb/test/API/commands/expression/timeout/Makefile
    lldb/test/API/commands/expression/timeout/TestCallWithTimeout.py
    lldb/test/API/commands/expression/timeout/wait-a-while.cpp
    lldb/test/API/commands/expression/top-level/Makefile
    lldb/test/API/commands/expression/top-level/TestTopLevelExprs.py
    lldb/test/API/commands/expression/top-level/dummy.cpp
    lldb/test/API/commands/expression/top-level/main.cpp
    lldb/test/API/commands/expression/top-level/test.cpp
    lldb/test/API/commands/expression/two-files/Makefile
    lldb/test/API/commands/expression/two-files/TestObjCTypeQueryFromOtherCompileUnit.py
    lldb/test/API/commands/expression/two-files/foo.m
    lldb/test/API/commands/expression/two-files/main.m
    lldb/test/API/commands/expression/unicode-in-variable/TestUnicodeInVariable.py
    lldb/test/API/commands/expression/unicode-in-variable/main.cpp
    lldb/test/API/commands/expression/unwind_expression/Makefile
    lldb/test/API/commands/expression/unwind_expression/TestUnwindExpression.py
    lldb/test/API/commands/expression/unwind_expression/main.cpp
    lldb/test/API/commands/expression/vector_of_enums/Makefile
    lldb/test/API/commands/expression/vector_of_enums/TestVectorOfEnums.py
    lldb/test/API/commands/expression/vector_of_enums/main.cpp
    lldb/test/API/commands/expression/weak_symbols/Makefile
    lldb/test/API/commands/expression/weak_symbols/TestWeakSymbols.py
    lldb/test/API/commands/expression/weak_symbols/dylib.c
    lldb/test/API/commands/expression/weak_symbols/dylib.h
    lldb/test/API/commands/expression/weak_symbols/main.c
    lldb/test/API/commands/expression/weak_symbols/module.modulemap
    lldb/test/API/commands/expression/xvalue/Makefile
    lldb/test/API/commands/expression/xvalue/TestXValuePrinting.py
    lldb/test/API/commands/expression/xvalue/main.cpp
    lldb/test/API/commands/frame/diagnose/array/Makefile
    lldb/test/API/commands/frame/diagnose/array/TestArray.py
    lldb/test/API/commands/frame/diagnose/array/main.c
    lldb/test/API/commands/frame/diagnose/bad-reference/Makefile
    lldb/test/API/commands/frame/diagnose/bad-reference/TestBadReference.py
    lldb/test/API/commands/frame/diagnose/bad-reference/main.cpp
    lldb/test/API/commands/frame/diagnose/complicated-expression/Makefile
    lldb/test/API/commands/frame/diagnose/complicated-expression/TestComplicatedExpression.py
    lldb/test/API/commands/frame/diagnose/complicated-expression/main.c
    lldb/test/API/commands/frame/diagnose/dereference-argument/Makefile
    lldb/test/API/commands/frame/diagnose/dereference-argument/TestDiagnoseDereferenceArgument.py
    lldb/test/API/commands/frame/diagnose/dereference-argument/main.c
    lldb/test/API/commands/frame/diagnose/dereference-function-return/Makefile
    lldb/test/API/commands/frame/diagnose/dereference-function-return/TestDiagnoseDereferenceFunctionReturn.py
    lldb/test/API/commands/frame/diagnose/dereference-function-return/main.c
    lldb/test/API/commands/frame/diagnose/dereference-this/Makefile
    lldb/test/API/commands/frame/diagnose/dereference-this/TestDiagnoseDereferenceThis.py
    lldb/test/API/commands/frame/diagnose/dereference-this/main.cpp
    lldb/test/API/commands/frame/diagnose/inheritance/Makefile
    lldb/test/API/commands/frame/diagnose/inheritance/TestDiagnoseInheritance.py
    lldb/test/API/commands/frame/diagnose/inheritance/main.cpp
    lldb/test/API/commands/frame/diagnose/local-variable/Makefile
    lldb/test/API/commands/frame/diagnose/local-variable/TestLocalVariable.py
    lldb/test/API/commands/frame/diagnose/local-variable/main.c
    lldb/test/API/commands/frame/diagnose/virtual-method-call/Makefile
    lldb/test/API/commands/frame/diagnose/virtual-method-call/TestDiagnoseDereferenceVirtualMethodCall.py
    lldb/test/API/commands/frame/diagnose/virtual-method-call/main.cpp
    lldb/test/API/commands/frame/language/Makefile
    lldb/test/API/commands/frame/language/TestGuessLanguage.py
    lldb/test/API/commands/frame/language/main.cpp
    lldb/test/API/commands/frame/language/other-2.cpp
    lldb/test/API/commands/frame/language/other.cpp
    lldb/test/API/commands/frame/language/other.h
    lldb/test/API/commands/frame/language/somefunc.c
    lldb/test/API/commands/frame/recognizer/Makefile
    lldb/test/API/commands/frame/recognizer/TestFrameRecognizer.py
    lldb/test/API/commands/frame/recognizer/main.m
    lldb/test/API/commands/frame/recognizer/recognizer.py
    lldb/test/API/commands/frame/select/Makefile
    lldb/test/API/commands/frame/select/TestFrameSelect.py
    lldb/test/API/commands/frame/select/main.cpp
    lldb/test/API/commands/frame/var-scope/TestFrameVariableScope.py
    lldb/test/API/commands/frame/var-scope/main.c
    lldb/test/API/commands/frame/var/Makefile
    lldb/test/API/commands/frame/var/TestFrameVar.py
    lldb/test/API/commands/frame/var/main.c
    lldb/test/API/commands/gui/basic/Makefile
    lldb/test/API/commands/gui/basic/TestGuiBasic.py
    lldb/test/API/commands/gui/basic/main.c
    lldb/test/API/commands/gui/invalid-args/TestInvalidArgsGui.py
    lldb/test/API/commands/help/TestHelp.py
    lldb/test/API/commands/log/basic/Makefile
    lldb/test/API/commands/log/basic/TestLogging.py
    lldb/test/API/commands/log/basic/main.cpp
    lldb/test/API/commands/log/invalid-args/TestInvalidArgsLog.py
    lldb/test/API/commands/platform/basic/TestPlatformCommand.py
    lldb/test/API/commands/platform/basic/TestPlatformPython.py
    lldb/test/API/commands/platform/process/Makefile
    lldb/test/API/commands/platform/process/TestProcessList.py
    lldb/test/API/commands/platform/process/main.cpp
    lldb/test/API/commands/process/attach-resume/Makefile
    lldb/test/API/commands/process/attach-resume/TestAttachResume.py
    lldb/test/API/commands/process/attach-resume/main.cpp
    lldb/test/API/commands/process/attach/Makefile
    lldb/test/API/commands/process/attach/TestProcessAttach.py
    lldb/test/API/commands/process/attach/attach_denied/Makefile
    lldb/test/API/commands/process/attach/attach_denied/TestAttachDenied.py
    lldb/test/API/commands/process/attach/attach_denied/entitlements.plist
    lldb/test/API/commands/process/attach/attach_denied/main.cpp
    lldb/test/API/commands/process/attach/main.cpp
    lldb/test/API/commands/process/launch-with-shellexpand/Makefile
    lldb/test/API/commands/process/launch-with-shellexpand/TestLaunchWithShellExpand.py
    lldb/test/API/commands/process/launch-with-shellexpand/file1.txt
    lldb/test/API/commands/process/launch-with-shellexpand/file2.txt
    lldb/test/API/commands/process/launch-with-shellexpand/file3.txt
    lldb/test/API/commands/process/launch-with-shellexpand/file4.txy
    lldb/test/API/commands/process/launch-with-shellexpand/file5.tyx
    lldb/test/API/commands/process/launch-with-shellexpand/foo bar
    lldb/test/API/commands/process/launch-with-shellexpand/main.cpp
    lldb/test/API/commands/process/launch/Makefile
    lldb/test/API/commands/process/launch/TestProcessLaunch.py
    lldb/test/API/commands/process/launch/input-file.txt
    lldb/test/API/commands/process/launch/main.cpp
    lldb/test/API/commands/process/launch/print_cwd.cpp
    lldb/test/API/commands/process/launch/print_env.cpp
    lldb/test/API/commands/quit/TestQuit.py
    lldb/test/API/commands/register/register/intel_xtended_registers/Makefile
    lldb/test/API/commands/register/register/intel_xtended_registers/TestMPXRegisters.py
    lldb/test/API/commands/register/register/intel_xtended_registers/main.cpp
    lldb/test/API/commands/register/register/intel_xtended_registers/mpx_bound_violation/Makefile
    lldb/test/API/commands/register/register/intel_xtended_registers/mpx_bound_violation/TestBoundViolation.py
    lldb/test/API/commands/register/register/intel_xtended_registers/mpx_bound_violation/main.cpp
    lldb/test/API/commands/register/register/intel_xtended_registers/mpx_offset_intersection/Makefile
    lldb/test/API/commands/register/register/intel_xtended_registers/mpx_offset_intersection/TestMPXOffsetIntersection.py
    lldb/test/API/commands/register/register/intel_xtended_registers/mpx_offset_intersection/main.cpp
    lldb/test/API/commands/register/register/register_command/Makefile
    lldb/test/API/commands/register/register/register_command/TestRegisters.py
    lldb/test/API/commands/register/register/register_command/a.cpp
    lldb/test/API/commands/register/register/register_command/main.cpp
    lldb/test/API/commands/reproducer/invalid-args/TestInvalidArgsReproducer.py
    lldb/test/API/commands/settings/Makefile
    lldb/test/API/commands/settings/TestSettings.py
    lldb/test/API/commands/settings/main.cpp
    lldb/test/API/commands/settings/quoting/Makefile
    lldb/test/API/commands/settings/quoting/TestQuoting.py
    lldb/test/API/commands/settings/quoting/main.c
    lldb/test/API/commands/source/info/TestSourceInfo.py
    lldb/test/API/commands/source/info/main.cpp
    lldb/test/API/commands/source/info/second.cpp
    lldb/test/API/commands/statistics/basic/TestStats.py
    lldb/test/API/commands/statistics/basic/main.c
    lldb/test/API/commands/target/auto-install-main-executable/Makefile
    lldb/test/API/commands/target/auto-install-main-executable/TestAutoInstallMainExecutable.py
    lldb/test/API/commands/target/auto-install-main-executable/main.cpp
    lldb/test/API/commands/target/basic/Makefile
    lldb/test/API/commands/target/basic/TestTargetCommand.py
    lldb/test/API/commands/target/basic/a.c
    lldb/test/API/commands/target/basic/b.c
    lldb/test/API/commands/target/basic/c.c
    lldb/test/API/commands/target/basic/globals.c
    lldb/test/API/commands/target/basic/invalid_core_file
    lldb/test/API/commands/target/create-deps/Makefile
    lldb/test/API/commands/target/create-deps/TestTargetCreateDeps.py
    lldb/test/API/commands/target/create-deps/a.cpp
    lldb/test/API/commands/target/create-deps/main.cpp
    lldb/test/API/commands/target/create-no-such-arch/Makefile
    lldb/test/API/commands/target/create-no-such-arch/TestNoSuchArch.py
    lldb/test/API/commands/target/create-no-such-arch/main.cpp
    lldb/test/API/commands/target/dump-symtab-demangle/TestDumpSymtabDemangle.py
    lldb/test/API/commands/target/dump-symtab-demangle/a.yaml
    lldb/test/API/commands/target/stop-hooks/Makefile
    lldb/test/API/commands/target/stop-hooks/TestStopHooks.py
    lldb/test/API/commands/target/stop-hooks/main.c
    lldb/test/API/commands/version/TestVersion.py
    lldb/test/API/commands/watchpoints/.categories
    lldb/test/API/commands/watchpoints/hello_watchlocation/Makefile
    lldb/test/API/commands/watchpoints/hello_watchlocation/TestWatchLocation.py
    lldb/test/API/commands/watchpoints/hello_watchlocation/main.cpp
    lldb/test/API/commands/watchpoints/hello_watchpoint/Makefile
    lldb/test/API/commands/watchpoints/hello_watchpoint/TestMyFirstWatchpoint.py
    lldb/test/API/commands/watchpoints/hello_watchpoint/main.c
    lldb/test/API/commands/watchpoints/multi_watchpoint_slots/Makefile
    lldb/test/API/commands/watchpoints/multi_watchpoint_slots/TestWatchpointMultipleSlots.py
    lldb/test/API/commands/watchpoints/multi_watchpoint_slots/main.c
    lldb/test/API/commands/watchpoints/multiple_hits/Makefile
    lldb/test/API/commands/watchpoints/multiple_hits/TestMultipleHits.py
    lldb/test/API/commands/watchpoints/multiple_hits/main.cpp
    lldb/test/API/commands/watchpoints/multiple_threads/Makefile
    lldb/test/API/commands/watchpoints/multiple_threads/TestWatchpointMultipleThreads.py
    lldb/test/API/commands/watchpoints/multiple_threads/main.cpp
    lldb/test/API/commands/watchpoints/step_over_watchpoint/Makefile
    lldb/test/API/commands/watchpoints/step_over_watchpoint/TestStepOverWatchpoint.py
    lldb/test/API/commands/watchpoints/step_over_watchpoint/main.c
    lldb/test/API/commands/watchpoints/variable_out_of_scope/Makefile
    lldb/test/API/commands/watchpoints/variable_out_of_scope/TestWatchedVarHitWhenInScope.py
    lldb/test/API/commands/watchpoints/variable_out_of_scope/main.c
    lldb/test/API/commands/watchpoints/watchpoint_commands/Makefile
    lldb/test/API/commands/watchpoints/watchpoint_commands/TestWatchpointCommands.py
    lldb/test/API/commands/watchpoints/watchpoint_commands/command/Makefile
    lldb/test/API/commands/watchpoints/watchpoint_commands/command/TestWatchpointCommandLLDB.py
    lldb/test/API/commands/watchpoints/watchpoint_commands/command/TestWatchpointCommandPython.py
    lldb/test/API/commands/watchpoints/watchpoint_commands/command/main.cpp
    lldb/test/API/commands/watchpoints/watchpoint_commands/command/watchpoint_command.py
    lldb/test/API/commands/watchpoints/watchpoint_commands/condition/Makefile
    lldb/test/API/commands/watchpoints/watchpoint_commands/condition/TestWatchpointConditionCmd.py
    lldb/test/API/commands/watchpoints/watchpoint_commands/condition/main.cpp
    lldb/test/API/commands/watchpoints/watchpoint_commands/main.c
    lldb/test/API/commands/watchpoints/watchpoint_disable/Makefile
    lldb/test/API/commands/watchpoints/watchpoint_disable/TestWatchpointDisable.py
    lldb/test/API/commands/watchpoints/watchpoint_disable/main.c
    lldb/test/API/commands/watchpoints/watchpoint_events/Makefile
    lldb/test/API/commands/watchpoints/watchpoint_events/TestWatchpointEvents.py
    lldb/test/API/commands/watchpoints/watchpoint_events/main.c
    lldb/test/API/commands/watchpoints/watchpoint_on_vectors/Makefile
    lldb/test/API/commands/watchpoints/watchpoint_on_vectors/TestValueOfVectorVariable.py
    lldb/test/API/commands/watchpoints/watchpoint_on_vectors/main.c
    lldb/test/API/commands/watchpoints/watchpoint_set_command/Makefile
    lldb/test/API/commands/watchpoints/watchpoint_set_command/TestWatchLocationWithWatchSet.py
    lldb/test/API/commands/watchpoints/watchpoint_set_command/main.cpp
    lldb/test/API/commands/watchpoints/watchpoint_size/Makefile
    lldb/test/API/commands/watchpoints/watchpoint_size/TestWatchpointSizes.py
    lldb/test/API/commands/watchpoints/watchpoint_size/main.c
    lldb/test/API/driver/batch_mode/Makefile
    lldb/test/API/driver/batch_mode/TestBatchMode.py
    lldb/test/API/driver/batch_mode/main.c
    lldb/test/API/functionalities/abbreviation/.categories
    lldb/test/API/functionalities/abbreviation/TestAbbreviations.py
    lldb/test/API/functionalities/abbreviation/TestCommonShortSpellings.py
    lldb/test/API/functionalities/alias/.categories
    lldb/test/API/functionalities/archives/Makefile
    lldb/test/API/functionalities/archives/README
    lldb/test/API/functionalities/archives/TestBSDArchives.py
    lldb/test/API/functionalities/archives/a.c
    lldb/test/API/functionalities/archives/b.c
    lldb/test/API/functionalities/archives/main.c
    lldb/test/API/functionalities/asan/Makefile
    lldb/test/API/functionalities/asan/TestMemoryHistory.py
    lldb/test/API/functionalities/asan/TestReportData.py
    lldb/test/API/functionalities/asan/main.c
    lldb/test/API/functionalities/avoids-fd-leak/Makefile
    lldb/test/API/functionalities/avoids-fd-leak/TestFdLeak.py
    lldb/test/API/functionalities/avoids-fd-leak/main.c
    lldb/test/API/functionalities/backticks/.categories
    lldb/test/API/functionalities/backticks/TestBackticksWithoutATarget.py
    lldb/test/API/functionalities/breakpoint/address_breakpoints/Makefile
    lldb/test/API/functionalities/breakpoint/address_breakpoints/TestAddressBreakpoints.py
    lldb/test/API/functionalities/breakpoint/address_breakpoints/TestBadAddressBreakpoints.py
    lldb/test/API/functionalities/breakpoint/address_breakpoints/main.c
    lldb/test/API/functionalities/breakpoint/auto_continue/Makefile
    lldb/test/API/functionalities/breakpoint/auto_continue/TestBreakpointAutoContinue.py
    lldb/test/API/functionalities/breakpoint/auto_continue/main.c
    lldb/test/API/functionalities/breakpoint/breakpoint_by_line_and_column/Makefile
    lldb/test/API/functionalities/breakpoint/breakpoint_by_line_and_column/TestBreakpointByLineAndColumn.py
    lldb/test/API/functionalities/breakpoint/breakpoint_by_line_and_column/main.c
    lldb/test/API/functionalities/breakpoint/breakpoint_callback_command_source/Makefile
    lldb/test/API/functionalities/breakpoint/breakpoint_callback_command_source/TestBreakpointCallbackCommandSource.py
    lldb/test/API/functionalities/breakpoint/breakpoint_callback_command_source/main.c
    lldb/test/API/functionalities/breakpoint/breakpoint_callback_command_source/source.lldb
    lldb/test/API/functionalities/breakpoint/breakpoint_command/Makefile
    lldb/test/API/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py
    lldb/test/API/functionalities/breakpoint/breakpoint_command/TestBreakpointCommandsFromPython.py
    lldb/test/API/functionalities/breakpoint/breakpoint_command/TestRegexpBreakCommand.py
    lldb/test/API/functionalities/breakpoint/breakpoint_command/a.c
    lldb/test/API/functionalities/breakpoint/breakpoint_command/b.c
    lldb/test/API/functionalities/breakpoint/breakpoint_command/bktptcmd.py
    lldb/test/API/functionalities/breakpoint/breakpoint_command/main.c
    lldb/test/API/functionalities/breakpoint/breakpoint_command/side_effect.py
    lldb/test/API/functionalities/breakpoint/breakpoint_conditions/Makefile
    lldb/test/API/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py
    lldb/test/API/functionalities/breakpoint/breakpoint_conditions/main.c
    lldb/test/API/functionalities/breakpoint/breakpoint_hit_count/Makefile
    lldb/test/API/functionalities/breakpoint/breakpoint_hit_count/TestBreakpointHitCount.py
    lldb/test/API/functionalities/breakpoint/breakpoint_hit_count/main.cpp
    lldb/test/API/functionalities/breakpoint/breakpoint_ids/Makefile
    lldb/test/API/functionalities/breakpoint/breakpoint_ids/TestBreakpointIDs.py
    lldb/test/API/functionalities/breakpoint/breakpoint_ids/main.cpp
    lldb/test/API/functionalities/breakpoint/breakpoint_ignore_count/Makefile
    lldb/test/API/functionalities/breakpoint/breakpoint_ignore_count/TestBreakpointIgnoreCount.py
    lldb/test/API/functionalities/breakpoint/breakpoint_ignore_count/main.c
    lldb/test/API/functionalities/breakpoint/breakpoint_in_delayslot/Makefile
    lldb/test/API/functionalities/breakpoint/breakpoint_in_delayslot/TestAvoidBreakpointInDelaySlot.py
    lldb/test/API/functionalities/breakpoint/breakpoint_in_delayslot/main.c
    lldb/test/API/functionalities/breakpoint/breakpoint_language/Makefile
    lldb/test/API/functionalities/breakpoint/breakpoint_language/TestBreakpointLanguage.py
    lldb/test/API/functionalities/breakpoint/breakpoint_language/a.c
    lldb/test/API/functionalities/breakpoint/breakpoint_language/b.cpp
    lldb/test/API/functionalities/breakpoint/breakpoint_language/main.cpp
    lldb/test/API/functionalities/breakpoint/breakpoint_locations/Makefile
    lldb/test/API/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py
    lldb/test/API/functionalities/breakpoint/breakpoint_locations/main.c
    lldb/test/API/functionalities/breakpoint/breakpoint_names/Makefile
    lldb/test/API/functionalities/breakpoint/breakpoint_names/TestBreakpointNames.py
    lldb/test/API/functionalities/breakpoint/breakpoint_names/main.c
    lldb/test/API/functionalities/breakpoint/breakpoint_options/Makefile
    lldb/test/API/functionalities/breakpoint/breakpoint_options/TestBreakpointOptions.py
    lldb/test/API/functionalities/breakpoint/breakpoint_options/foo.cpp
    lldb/test/API/functionalities/breakpoint/breakpoint_options/main.cpp
    lldb/test/API/functionalities/breakpoint/breakpoint_set_restart/Makefile
    lldb/test/API/functionalities/breakpoint/breakpoint_set_restart/TestBreakpointSetRestart.py
    lldb/test/API/functionalities/breakpoint/breakpoint_set_restart/main.cpp
    lldb/test/API/functionalities/breakpoint/comp_dir_symlink/Makefile
    lldb/test/API/functionalities/breakpoint/comp_dir_symlink/TestCompDirSymLink.py
    lldb/test/API/functionalities/breakpoint/comp_dir_symlink/main.cpp
    lldb/test/API/functionalities/breakpoint/consecutive_breakpoints/Makefile
    lldb/test/API/functionalities/breakpoint/consecutive_breakpoints/TestConsecutiveBreakpoints.py
    lldb/test/API/functionalities/breakpoint/consecutive_breakpoints/main.cpp
    lldb/test/API/functionalities/breakpoint/cpp/Makefile
    lldb/test/API/functionalities/breakpoint/cpp/TestCPPBreakpointLocations.py
    lldb/test/API/functionalities/breakpoint/cpp/main.cpp
    lldb/test/API/functionalities/breakpoint/cpp_exception/Makefile
    lldb/test/API/functionalities/breakpoint/cpp_exception/TestCPPExceptionBreakpoint.py
    lldb/test/API/functionalities/breakpoint/cpp_exception/main.cpp
    lldb/test/API/functionalities/breakpoint/debugbreak/Makefile
    lldb/test/API/functionalities/breakpoint/debugbreak/TestDebugBreak.py
    lldb/test/API/functionalities/breakpoint/debugbreak/main.c
    lldb/test/API/functionalities/breakpoint/dummy_target_breakpoints/Makefile
    lldb/test/API/functionalities/breakpoint/dummy_target_breakpoints/TestBreakpointsWithNoTargets.py
    lldb/test/API/functionalities/breakpoint/dummy_target_breakpoints/main.c
    lldb/test/API/functionalities/breakpoint/global_constructor/Makefile
    lldb/test/API/functionalities/breakpoint/global_constructor/TestBreakpointInGlobalConstructor.py
    lldb/test/API/functionalities/breakpoint/global_constructor/foo.cpp
    lldb/test/API/functionalities/breakpoint/global_constructor/foo.h
    lldb/test/API/functionalities/breakpoint/global_constructor/main.cpp
    lldb/test/API/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/Makefile
    lldb/test/API/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/TestHWBreakMultiThread.py
    lldb/test/API/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/main.cpp
    lldb/test/API/functionalities/breakpoint/inlined_breakpoints/Makefile
    lldb/test/API/functionalities/breakpoint/inlined_breakpoints/TestInlinedBreakpoints.py
    lldb/test/API/functionalities/breakpoint/inlined_breakpoints/basic_type.cpp
    lldb/test/API/functionalities/breakpoint/inlined_breakpoints/int.cpp
    lldb/test/API/functionalities/breakpoint/move_nearest/Makefile
    lldb/test/API/functionalities/breakpoint/move_nearest/TestMoveNearest.py
    lldb/test/API/functionalities/breakpoint/move_nearest/foo.cpp
    lldb/test/API/functionalities/breakpoint/move_nearest/foo.h
    lldb/test/API/functionalities/breakpoint/move_nearest/main.cpp
    lldb/test/API/functionalities/breakpoint/objc/Makefile
    lldb/test/API/functionalities/breakpoint/objc/TestObjCBreakpoints.py
    lldb/test/API/functionalities/breakpoint/objc/main.m
    lldb/test/API/functionalities/breakpoint/require_hw_breakpoints/Makefile
    lldb/test/API/functionalities/breakpoint/require_hw_breakpoints/TestRequireHWBreakpoints.py
    lldb/test/API/functionalities/breakpoint/require_hw_breakpoints/main.c
    lldb/test/API/functionalities/breakpoint/scripted_bkpt/Makefile
    lldb/test/API/functionalities/breakpoint/scripted_bkpt/TestScriptedResolver.py
    lldb/test/API/functionalities/breakpoint/scripted_bkpt/main.c
    lldb/test/API/functionalities/breakpoint/scripted_bkpt/resolver.py
    lldb/test/API/functionalities/breakpoint/serialize/Makefile
    lldb/test/API/functionalities/breakpoint/serialize/TestBreakpointSerialization.py
    lldb/test/API/functionalities/breakpoint/serialize/main.c
    lldb/test/API/functionalities/breakpoint/serialize/resolver.py
    lldb/test/API/functionalities/breakpoint/serialize/side_effect.py
    lldb/test/API/functionalities/breakpoint/source_regexp/Makefile
    lldb/test/API/functionalities/breakpoint/source_regexp/TestSourceRegexBreakpoints.py
    lldb/test/API/functionalities/breakpoint/source_regexp/a.c
    lldb/test/API/functionalities/breakpoint/source_regexp/a.h
    lldb/test/API/functionalities/breakpoint/source_regexp/main.c
    lldb/test/API/functionalities/breakpoint/step_over_breakpoint/Makefile
    lldb/test/API/functionalities/breakpoint/step_over_breakpoint/TestStepOverBreakpoint.py
    lldb/test/API/functionalities/breakpoint/step_over_breakpoint/main.cpp
    lldb/test/API/functionalities/completion/.categories
    lldb/test/API/functionalities/completion/Makefile
    lldb/test/API/functionalities/completion/TestCompletion.py
    lldb/test/API/functionalities/completion/main.cpp
    lldb/test/API/functionalities/conditional_break/.lldb
    lldb/test/API/functionalities/conditional_break/Makefile
    lldb/test/API/functionalities/conditional_break/TestConditionalBreak.py
    lldb/test/API/functionalities/conditional_break/conditional_break.py
    lldb/test/API/functionalities/conditional_break/main.c
    lldb/test/API/functionalities/darwin_log/.categories
    lldb/test/API/functionalities/darwin_log/basic/Makefile
    lldb/test/API/functionalities/darwin_log/basic/TestDarwinLogBasic.py
    lldb/test/API/functionalities/darwin_log/basic/main.c
    lldb/test/API/functionalities/darwin_log/common/darwin_log_common.h
    lldb/test/API/functionalities/darwin_log/filter/exact_match/activity-chain/Makefile
    lldb/test/API/functionalities/darwin_log/filter/exact_match/activity-chain/TestDarwinLogFilterMatchActivityChain.py
    lldb/test/API/functionalities/darwin_log/filter/exact_match/activity-chain/main.c
    lldb/test/API/functionalities/darwin_log/filter/exact_match/activity/Makefile
    lldb/test/API/functionalities/darwin_log/filter/exact_match/activity/TestDarwinLogFilterMatchActivity.py
    lldb/test/API/functionalities/darwin_log/filter/exact_match/activity/main.c
    lldb/test/API/functionalities/darwin_log/filter/exact_match/category/Makefile
    lldb/test/API/functionalities/darwin_log/filter/exact_match/category/TestDarwinLogFilterMatchCategory.py
    lldb/test/API/functionalities/darwin_log/filter/exact_match/category/main.c
    lldb/test/API/functionalities/darwin_log/filter/exact_match/message/Makefile
    lldb/test/API/functionalities/darwin_log/filter/exact_match/message/TestDarwinLogFilterMatchMessage.py
    lldb/test/API/functionalities/darwin_log/filter/exact_match/message/main.c
    lldb/test/API/functionalities/darwin_log/filter/exact_match/subsystem/Makefile
    lldb/test/API/functionalities/darwin_log/filter/exact_match/subsystem/TestDarwinLogFilterMatchSubsystem.py
    lldb/test/API/functionalities/darwin_log/filter/exact_match/subsystem/main.c
    lldb/test/API/functionalities/darwin_log/filter/regex/activity-chain/Makefile
    lldb/test/API/functionalities/darwin_log/filter/regex/activity-chain/TestDarwinLogFilterRegexActivityChain.py
    lldb/test/API/functionalities/darwin_log/filter/regex/activity-chain/main.c
    lldb/test/API/functionalities/darwin_log/filter/regex/activity/Makefile
    lldb/test/API/functionalities/darwin_log/filter/regex/activity/TestDarwinLogFilterRegexActivity.py
    lldb/test/API/functionalities/darwin_log/filter/regex/activity/main.c
    lldb/test/API/functionalities/darwin_log/filter/regex/category/Makefile
    lldb/test/API/functionalities/darwin_log/filter/regex/category/TestDarwinLogFilterRegexCategory.py
    lldb/test/API/functionalities/darwin_log/filter/regex/category/main.c
    lldb/test/API/functionalities/darwin_log/filter/regex/message/Makefile
    lldb/test/API/functionalities/darwin_log/filter/regex/message/TestDarwinLogFilterRegexMessage.py
    lldb/test/API/functionalities/darwin_log/filter/regex/message/main.c
    lldb/test/API/functionalities/darwin_log/filter/regex/subsystem/Makefile
    lldb/test/API/functionalities/darwin_log/filter/regex/subsystem/TestDarwinLogFilterRegexSubsystem.py
    lldb/test/API/functionalities/darwin_log/filter/regex/subsystem/main.c
    lldb/test/API/functionalities/darwin_log/format/Makefile
    lldb/test/API/functionalities/darwin_log/format/TestDarwinLogMessageFormat.py
    lldb/test/API/functionalities/darwin_log/format/main.c
    lldb/test/API/functionalities/darwin_log/source/debug/Makefile
    lldb/test/API/functionalities/darwin_log/source/debug/TestDarwinLogSourceDebug.py
    lldb/test/API/functionalities/darwin_log/source/debug/main.c
    lldb/test/API/functionalities/darwin_log/source/info/Makefile
    lldb/test/API/functionalities/darwin_log/source/info/TestDarwinLogSourceInfo.py
    lldb/test/API/functionalities/darwin_log/source/info/main.c
    lldb/test/API/functionalities/data-formatter/.categories
    lldb/test/API/functionalities/data-formatter/array_typedef/Makefile
    lldb/test/API/functionalities/data-formatter/array_typedef/TestArrayTypedef.py
    lldb/test/API/functionalities/data-formatter/array_typedef/main.cpp
    lldb/test/API/functionalities/data-formatter/boolreference/Makefile
    lldb/test/API/functionalities/data-formatter/boolreference/TestFormattersBoolRefPtr.py
    lldb/test/API/functionalities/data-formatter/boolreference/main.mm
    lldb/test/API/functionalities/data-formatter/compactvectors/Makefile
    lldb/test/API/functionalities/data-formatter/compactvectors/TestCompactVectors.py
    lldb/test/API/functionalities/data-formatter/compactvectors/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-advanced/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-advanced/TestDataFormatterAdv.py
    lldb/test/API/functionalities/data-formatter/data-formatter-advanced/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-caching/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-caching/TestDataFormatterCaching.py
    lldb/test/API/functionalities/data-formatter/data-formatter-caching/a.c
    lldb/test/API/functionalities/data-formatter/data-formatter-caching/b.c
    lldb/test/API/functionalities/data-formatter/data-formatter-categories/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-categories/TestDataFormatterCategories.py
    lldb/test/API/functionalities/data-formatter/data-formatter-categories/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-cpp/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-cpp/TestDataFormatterCpp.py
    lldb/test/API/functionalities/data-formatter/data-formatter-cpp/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-disabling/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-disabling/TestDataFormatterDisabling.py
    lldb/test/API/functionalities/data-formatter/data-formatter-disabling/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-enum-format/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-enum-format/TestDataFormatterEnumFormat.py
    lldb/test/API/functionalities/data-formatter/data-formatter-enum-format/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-globals/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-globals/TestDataFormatterGlobals.py
    lldb/test/API/functionalities/data-formatter/data-formatter-globals/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-named-summaries/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-named-summaries/TestDataFormatterNamedSummaries.py
    lldb/test/API/functionalities/data-formatter/data-formatter-named-summaries/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-objc/.categories
    lldb/test/API/functionalities/data-formatter/data-formatter-objc/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-objc/ObjCDataFormatterTestCase.py
    lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCCF.py
    lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCExpr.py
    lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCKVO.py
    lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSBundle.py
    lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSContainer.py
    lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSData.py
    lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSDate.py
    lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSError.py
    lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSURL.py
    lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCPlain.py
    lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjNSException.py
    lldb/test/API/functionalities/data-formatter/data-formatter-objc/cmtime/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-objc/cmtime/TestDataFormatterCMTime.py
    lldb/test/API/functionalities/data-formatter/data-formatter-objc/cmtime/main.m
    lldb/test/API/functionalities/data-formatter/data-formatter-objc/main.m
    lldb/test/API/functionalities/data-formatter/data-formatter-objc/nsindexpath/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-objc/nsindexpath/TestDataFormatterNSIndexPath.py
    lldb/test/API/functionalities/data-formatter/data-formatter-objc/nsindexpath/main.m
    lldb/test/API/functionalities/data-formatter/data-formatter-objc/nsstring/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-objc/nsstring/TestDataFormatterNSString.py
    lldb/test/API/functionalities/data-formatter/data-formatter-objc/nsstring/main.m
    lldb/test/API/functionalities/data-formatter/data-formatter-proper-plurals/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-proper-plurals/TestFormattersOneIsSingular.py
    lldb/test/API/functionalities/data-formatter/data-formatter-proper-plurals/main.m
    lldb/test/API/functionalities/data-formatter/data-formatter-ptr-to-array/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-ptr-to-array/TestPtrToArrayFormatting.py
    lldb/test/API/functionalities/data-formatter/data-formatter-ptr-to-array/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-python-synth/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-python-synth/TestDataFormatterPythonSynth.py
    lldb/test/API/functionalities/data-formatter/data-formatter-python-synth/fooSynthProvider.py
    lldb/test/API/functionalities/data-formatter/data-formatter-python-synth/ftsp.py
    lldb/test/API/functionalities/data-formatter/data-formatter-python-synth/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-script/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-script/TestDataFormatterScript.py
    lldb/test/API/functionalities/data-formatter/data-formatter-script/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-skip-summary/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-skip-summary/TestDataFormatterSkipSummary.py
    lldb/test/API/functionalities/data-formatter/data-formatter-skip-summary/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-smart-array/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-smart-array/TestDataFormatterSmartArray.py
    lldb/test/API/functionalities/data-formatter/data-formatter-smart-array/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/TestLibCxxAtomic.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/TestDataFormatterLibcxxBitset.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/TestDataFormatterLibcxxForwardList.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/function/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/function/TestLibCxxFunction.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/function/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/TestInitializerList.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/TestDataFormatterLibccIterator.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/list/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/list/TestDataFormatterLibcxxList.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/TestDataFormatterLibcxxListLoop.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/list/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/map/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/map/TestDataFormatterLibccMap.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/map/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/TestDataFormatterLibccMultiMap.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/TestDataFormatterLibcxxMultiSet.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/optional/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/optional/TestDataFormatterLibcxxOptional.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/optional/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/queue/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/queue/TestDataFormatterLibcxxQueue.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/queue/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/set/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/set/TestDataFormatterLibcxxSet.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/set/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/string/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/string/TestDataFormatterLibcxxString.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/string/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/TestDataFormatterLibcxxTuple.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/TestDataFormatterUnordered.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/variant/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/variant/TestDataFormatterLibcxxVariant.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/variant/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/TestDataFormatterLibcxxVBool.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/vector/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/vector/TestDataFormatterLibcxxVector.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/vector/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/TestDataFormatterStdIterator.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/TestDataFormatterStdList.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/TestDataFormatterStdMap.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/TestDataFormatterStdSmartPtr.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/TestDataFormatterStdString.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/TestDataFormatterStdTuple.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/TestDataFormatterStdUniquePtr.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/invalid/TestDataFormatterInvalidStdUniquePtr.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/invalid/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/TestDataFormatterStdVBool.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/TestDataFormatterStdVector.py
    lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-synth/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-synth/TestDataFormatterSynth.py
    lldb/test/API/functionalities/data-formatter/data-formatter-synth/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-synthtype/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-synthtype/TestDataFormatterSynthType.py
    lldb/test/API/functionalities/data-formatter/data-formatter-synthtype/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-synthtype/myIntSynthProvider.py
    lldb/test/API/functionalities/data-formatter/data-formatter-synthval/Makefile
    lldb/test/API/functionalities/data-formatter/data-formatter-synthval/TestDataFormatterSynthVal.py
    lldb/test/API/functionalities/data-formatter/data-formatter-synthval/main.cpp
    lldb/test/API/functionalities/data-formatter/data-formatter-synthval/myIntSynthProvider.py
    lldb/test/API/functionalities/data-formatter/dump_dynamic/TestDumpDynamic.py
    lldb/test/API/functionalities/data-formatter/dump_dynamic/main.cpp
    lldb/test/API/functionalities/data-formatter/format-propagation/Makefile
    lldb/test/API/functionalities/data-formatter/format-propagation/TestFormatPropagation.py
    lldb/test/API/functionalities/data-formatter/format-propagation/main.cpp
    lldb/test/API/functionalities/data-formatter/frameformat_smallstruct/Makefile
    lldb/test/API/functionalities/data-formatter/frameformat_smallstruct/TestFrameFormatSmallStruct.py
    lldb/test/API/functionalities/data-formatter/frameformat_smallstruct/main.cpp
    lldb/test/API/functionalities/data-formatter/hexcaps/Makefile
    lldb/test/API/functionalities/data-formatter/hexcaps/TestDataFormatterHexCaps.py
    lldb/test/API/functionalities/data-formatter/hexcaps/main.cpp
    lldb/test/API/functionalities/data-formatter/language_category_updates/Makefile
    lldb/test/API/functionalities/data-formatter/language_category_updates/TestDataFormatterLanguageCategoryUpdates.py
    lldb/test/API/functionalities/data-formatter/language_category_updates/main.cpp
    lldb/test/API/functionalities/data-formatter/nsarraysynth/Makefile
    lldb/test/API/functionalities/data-formatter/nsarraysynth/TestNSArraySynthetic.py
    lldb/test/API/functionalities/data-formatter/nsarraysynth/main.m
    lldb/test/API/functionalities/data-formatter/nsdictionarysynth/Makefile
    lldb/test/API/functionalities/data-formatter/nsdictionarysynth/TestNSDictionarySynthetic.py
    lldb/test/API/functionalities/data-formatter/nsdictionarysynth/main.m
    lldb/test/API/functionalities/data-formatter/nssetsynth/Makefile
    lldb/test/API/functionalities/data-formatter/nssetsynth/TestNSSetSynthetic.py
    lldb/test/API/functionalities/data-formatter/nssetsynth/main.m
    lldb/test/API/functionalities/data-formatter/ostypeformatting/Makefile
    lldb/test/API/functionalities/data-formatter/ostypeformatting/TestFormattersOsType.py
    lldb/test/API/functionalities/data-formatter/ostypeformatting/main.mm
    lldb/test/API/functionalities/data-formatter/parray/Makefile
    lldb/test/API/functionalities/data-formatter/parray/TestPrintArray.py
    lldb/test/API/functionalities/data-formatter/parray/main.cpp
    lldb/test/API/functionalities/data-formatter/poarray/Makefile
    lldb/test/API/functionalities/data-formatter/poarray/TestPrintObjectArray.py
    lldb/test/API/functionalities/data-formatter/poarray/main.mm
    lldb/test/API/functionalities/data-formatter/ptr_ref_typedef/Makefile
    lldb/test/API/functionalities/data-formatter/ptr_ref_typedef/TestPtrRef2Typedef.py
    lldb/test/API/functionalities/data-formatter/ptr_ref_typedef/main.cpp
    lldb/test/API/functionalities/data-formatter/pyobjsynthprovider/Makefile
    lldb/test/API/functionalities/data-formatter/pyobjsynthprovider/TestPyObjSynthProvider.py
    lldb/test/API/functionalities/data-formatter/pyobjsynthprovider/main.cpp
    lldb/test/API/functionalities/data-formatter/pyobjsynthprovider/provider.py
    lldb/test/API/functionalities/data-formatter/refpointer-recursion/Makefile
    lldb/test/API/functionalities/data-formatter/refpointer-recursion/TestDataFormatterRefPtrRecursion.py
    lldb/test/API/functionalities/data-formatter/refpointer-recursion/main.cpp
    lldb/test/API/functionalities/data-formatter/setvaluefromcstring/TestSetValueFromCString.py
    lldb/test/API/functionalities/data-formatter/setvaluefromcstring/main.m
    lldb/test/API/functionalities/data-formatter/stringprinter/TestStringPrinter.py
    lldb/test/API/functionalities/data-formatter/stringprinter/main.cpp
    lldb/test/API/functionalities/data-formatter/summary-string-onfail/Makefile
    lldb/test/API/functionalities/data-formatter/summary-string-onfail/Test-rdar-9974002.py
    lldb/test/API/functionalities/data-formatter/summary-string-onfail/main.cpp
    lldb/test/API/functionalities/data-formatter/synthcapping/Makefile
    lldb/test/API/functionalities/data-formatter/synthcapping/TestSyntheticCapping.py
    lldb/test/API/functionalities/data-formatter/synthcapping/fooSynthProvider.py
    lldb/test/API/functionalities/data-formatter/synthcapping/main.cpp
    lldb/test/API/functionalities/data-formatter/synthupdate/Makefile
    lldb/test/API/functionalities/data-formatter/synthupdate/TestSyntheticFilterRecompute.py
    lldb/test/API/functionalities/data-formatter/synthupdate/main.m
    lldb/test/API/functionalities/data-formatter/type_summary_list_arg/TestTypeSummaryListArg.py
    lldb/test/API/functionalities/data-formatter/type_summary_list_script/Makefile
    lldb/test/API/functionalities/data-formatter/type_summary_list_script/TestTypeSummaryListScript.py
    lldb/test/API/functionalities/data-formatter/type_summary_list_script/main.cpp
    lldb/test/API/functionalities/data-formatter/type_summary_list_script/tslsformatters.py
    lldb/test/API/functionalities/data-formatter/typedef_array/TestTypedefArray.py
    lldb/test/API/functionalities/data-formatter/typedef_array/main.cpp
    lldb/test/API/functionalities/data-formatter/user-format-vs-summary/Makefile
    lldb/test/API/functionalities/data-formatter/user-format-vs-summary/TestUserFormatVsSummary.py
    lldb/test/API/functionalities/data-formatter/user-format-vs-summary/main.cpp
    lldb/test/API/functionalities/data-formatter/var-in-aggregate-misuse/Makefile
    lldb/test/API/functionalities/data-formatter/var-in-aggregate-misuse/TestVarInAggregateMisuse.py
    lldb/test/API/functionalities/data-formatter/var-in-aggregate-misuse/main.cpp
    lldb/test/API/functionalities/data-formatter/varscript_formatting/Makefile
    lldb/test/API/functionalities/data-formatter/varscript_formatting/TestDataFormatterVarScriptFormatting.py
    lldb/test/API/functionalities/data-formatter/varscript_formatting/helperfunc.py
    lldb/test/API/functionalities/data-formatter/varscript_formatting/main.cpp
    lldb/test/API/functionalities/data-formatter/vector-types/Makefile
    lldb/test/API/functionalities/data-formatter/vector-types/TestVectorTypesFormatting.py
    lldb/test/API/functionalities/data-formatter/vector-types/main.cpp
    lldb/test/API/functionalities/dead-strip/Makefile
    lldb/test/API/functionalities/dead-strip/TestDeadStrip.py
    lldb/test/API/functionalities/dead-strip/cmds.txt
    lldb/test/API/functionalities/dead-strip/main.c
    lldb/test/API/functionalities/deleted-executable/Makefile
    lldb/test/API/functionalities/deleted-executable/TestDeletedExecutable.py
    lldb/test/API/functionalities/deleted-executable/main.cpp
    lldb/test/API/functionalities/dynamic_value_child_count/Makefile
    lldb/test/API/functionalities/dynamic_value_child_count/TestDynamicValueChildCount.py
    lldb/test/API/functionalities/dynamic_value_child_count/pass-to-base.cpp
    lldb/test/API/functionalities/exec/Makefile
    lldb/test/API/functionalities/exec/TestExec.py
    lldb/test/API/functionalities/exec/main.cpp
    lldb/test/API/functionalities/exec/secondprog.cpp
    lldb/test/API/functionalities/fat_archives/Makefile
    lldb/test/API/functionalities/fat_archives/TestFatArchives.py
    lldb/test/API/functionalities/fat_archives/a.c
    lldb/test/API/functionalities/fat_archives/a.h
    lldb/test/API/functionalities/fat_archives/main.c
    lldb/test/API/functionalities/float-display/Makefile
    lldb/test/API/functionalities/float-display/TestFloatDisplay.py
    lldb/test/API/functionalities/float-display/main.c
    lldb/test/API/functionalities/gdb_remote_client/TestArmRegisterDefinition.py
    lldb/test/API/functionalities/gdb_remote_client/TestGDBRemoteClient.py
    lldb/test/API/functionalities/gdb_remote_client/TestGDBRemoteLoad.py
    lldb/test/API/functionalities/gdb_remote_client/TestJLink6Armv7RegisterDefinition.py
    lldb/test/API/functionalities/gdb_remote_client/TestNestedRegDefinitions.py
    lldb/test/API/functionalities/gdb_remote_client/TestNoGPacketSupported.py
    lldb/test/API/functionalities/gdb_remote_client/TestNoWatchpointSupportInfo.py
    lldb/test/API/functionalities/gdb_remote_client/TestPlatformClient.py
    lldb/test/API/functionalities/gdb_remote_client/TestRecognizeBreakpoint.py
    lldb/test/API/functionalities/gdb_remote_client/TestRegDefinitionInParts.py
    lldb/test/API/functionalities/gdb_remote_client/TestRestartBug.py
    lldb/test/API/functionalities/gdb_remote_client/TestStopPCs.py
    lldb/test/API/functionalities/gdb_remote_client/TestTargetXMLArch.py
    lldb/test/API/functionalities/gdb_remote_client/TestThreadSelectionBug.py
    lldb/test/API/functionalities/gdb_remote_client/TestWriteMemory.py
    lldb/test/API/functionalities/gdb_remote_client/a.yaml
    lldb/test/API/functionalities/gdb_remote_client/basic_eh_frame.yaml
    lldb/test/API/functionalities/gdb_remote_client/gdbclientutils.py
    lldb/test/API/functionalities/gdb_remote_client/operating_system.py
    lldb/test/API/functionalities/gdb_remote_client/operating_system_2.py
    lldb/test/API/functionalities/history/TestHistoryRecall.py
    lldb/test/API/functionalities/inferior-assert/Makefile
    lldb/test/API/functionalities/inferior-assert/TestInferiorAssert.py
    lldb/test/API/functionalities/inferior-assert/main.c
    lldb/test/API/functionalities/inferior-changed/Makefile
    lldb/test/API/functionalities/inferior-changed/TestInferiorChanged.py
    lldb/test/API/functionalities/inferior-changed/main.c
    lldb/test/API/functionalities/inferior-changed/main2.c
    lldb/test/API/functionalities/inferior-crashing/Makefile
    lldb/test/API/functionalities/inferior-crashing/TestInferiorCrashing.py
    lldb/test/API/functionalities/inferior-crashing/TestInferiorCrashingStep.py
    lldb/test/API/functionalities/inferior-crashing/main.c
    lldb/test/API/functionalities/inferior-crashing/recursive-inferior/Makefile
    lldb/test/API/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py
    lldb/test/API/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferiorStep.py
    lldb/test/API/functionalities/inferior-crashing/recursive-inferior/main.c
    lldb/test/API/functionalities/inline-stepping/Makefile
    lldb/test/API/functionalities/inline-stepping/TestInlineStepping.py
    lldb/test/API/functionalities/inline-stepping/calling.cpp
    lldb/test/API/functionalities/jitloader_gdb/Makefile
    lldb/test/API/functionalities/jitloader_gdb/TestJITLoaderGDB.py
    lldb/test/API/functionalities/jitloader_gdb/main.c
    lldb/test/API/functionalities/jitloader_gdb/simple.c
    lldb/test/API/functionalities/lazy-loading/Makefile
    lldb/test/API/functionalities/lazy-loading/TestLazyLoading.py
    lldb/test/API/functionalities/lazy-loading/main.cpp
    lldb/test/API/functionalities/load_unload/.categories
    lldb/test/API/functionalities/load_unload/Makefile
    lldb/test/API/functionalities/load_unload/TestLoadUnload.py
    lldb/test/API/functionalities/load_unload/a.cpp
    lldb/test/API/functionalities/load_unload/b.cpp
    lldb/test/API/functionalities/load_unload/c.cpp
    lldb/test/API/functionalities/load_unload/cmds.txt
    lldb/test/API/functionalities/load_unload/d.cpp
    lldb/test/API/functionalities/load_unload/hidden/Makefile
    lldb/test/API/functionalities/load_unload/hidden/d.cpp
    lldb/test/API/functionalities/load_unload/main.cpp
    lldb/test/API/functionalities/load_using_paths/.categories
    lldb/test/API/functionalities/load_using_paths/Makefile
    lldb/test/API/functionalities/load_using_paths/TestLoadUsingPaths.py
    lldb/test/API/functionalities/load_using_paths/hidden/Makefile
    lldb/test/API/functionalities/load_using_paths/hidden/d.cpp
    lldb/test/API/functionalities/load_using_paths/main.cpp
    lldb/test/API/functionalities/longjmp/Makefile
    lldb/test/API/functionalities/longjmp/TestLongjmp.py
    lldb/test/API/functionalities/longjmp/main.c
    lldb/test/API/functionalities/memory-region/Makefile
    lldb/test/API/functionalities/memory-region/TestMemoryRegion.py
    lldb/test/API/functionalities/memory-region/main.cpp
    lldb/test/API/functionalities/memory/cache/Makefile
    lldb/test/API/functionalities/memory/cache/TestMemoryCache.py
    lldb/test/API/functionalities/memory/cache/main.cpp
    lldb/test/API/functionalities/memory/find/Makefile
    lldb/test/API/functionalities/memory/find/TestMemoryFind.py
    lldb/test/API/functionalities/memory/find/main.cpp
    lldb/test/API/functionalities/memory/read/Makefile
    lldb/test/API/functionalities/memory/read/TestMemoryRead.py
    lldb/test/API/functionalities/memory/read/main.cpp
    lldb/test/API/functionalities/mtc/simple/Makefile
    lldb/test/API/functionalities/mtc/simple/TestMTCSimple.py
    lldb/test/API/functionalities/mtc/simple/main.m
    lldb/test/API/functionalities/multidebugger_commands/TestMultipleDebuggersCommands.py
    lldb/test/API/functionalities/multiword-commands/TestMultiWordCommands.py
    lldb/test/API/functionalities/non-overlapping-index-variable-i/Makefile
    lldb/test/API/functionalities/non-overlapping-index-variable-i/TestIndexVariable.py
    lldb/test/API/functionalities/non-overlapping-index-variable-i/main.cpp
    lldb/test/API/functionalities/object-file/TestImageListMultiArchitecture.py
    lldb/test/API/functionalities/object-file/bin/hello-freebsd-10.0-x86_64-clang-3.3
    lldb/test/API/functionalities/object-file/bin/hello-freebsd-10.0-x86_64-gcc-4.7.3
    lldb/test/API/functionalities/object-file/bin/hello-netbsd-6.1-x86_64-gcc-4.5.3
    lldb/test/API/functionalities/object-file/bin/hello-ubuntu-14.04-x86_64-clang-3.5pre
    lldb/test/API/functionalities/object-file/bin/hello-ubuntu-14.04-x86_64-gcc-4.8.2
    lldb/test/API/functionalities/object-file/bin/hello-unknown-kalimba_arch4-kcc-36
    lldb/test/API/functionalities/object-file/bin/hello-unknown-kalimba_arch5-kcc-39
    lldb/test/API/functionalities/object-file/bin/hello.c
    lldb/test/API/functionalities/object-file/bin/hello.cpp
    lldb/test/API/functionalities/optimized_code/Makefile
    lldb/test/API/functionalities/optimized_code/TestNoASanExceptionAfterEvalOP_piece.py
    lldb/test/API/functionalities/optimized_code/main.cpp
    lldb/test/API/functionalities/param_entry_vals/basic_entry_values_x86_64/Makefile
    lldb/test/API/functionalities/param_entry_vals/basic_entry_values_x86_64/TestBasicEntryValuesX86_64.py
    lldb/test/API/functionalities/param_entry_vals/basic_entry_values_x86_64/main.cpp
    lldb/test/API/functionalities/paths/TestPaths.py
    lldb/test/API/functionalities/plugins/command_plugin/Makefile
    lldb/test/API/functionalities/plugins/command_plugin/TestPluginCommands.py
    lldb/test/API/functionalities/plugins/command_plugin/plugin.cpp.template
    lldb/test/API/functionalities/plugins/python_os_plugin/Makefile
    lldb/test/API/functionalities/plugins/python_os_plugin/TestPythonOSPlugin.py
    lldb/test/API/functionalities/plugins/python_os_plugin/main.c
    lldb/test/API/functionalities/plugins/python_os_plugin/operating_system.py
    lldb/test/API/functionalities/plugins/python_os_plugin/operating_system2.py
    lldb/test/API/functionalities/postmortem/elf-core/TestLinuxCore.py
    lldb/test/API/functionalities/postmortem/elf-core/altmain.c
    lldb/test/API/functionalities/postmortem/elf-core/altmain.core
    lldb/test/API/functionalities/postmortem/elf-core/altmain.out
    lldb/test/API/functionalities/postmortem/elf-core/fpr_sse.cpp
    lldb/test/API/functionalities/postmortem/elf-core/gcore/TestGCore.py
    lldb/test/API/functionalities/postmortem/elf-core/gcore/linux-i386.core
    lldb/test/API/functionalities/postmortem/elf-core/gcore/linux-x86_64.core
    lldb/test/API/functionalities/postmortem/elf-core/gcore/main.cpp
    lldb/test/API/functionalities/postmortem/elf-core/gcore/main.mk
    lldb/test/API/functionalities/postmortem/elf-core/gcore/make-core.sh
    lldb/test/API/functionalities/postmortem/elf-core/linux-arm.core
    lldb/test/API/functionalities/postmortem/elf-core/linux-fpr_sse_i386.core
    lldb/test/API/functionalities/postmortem/elf-core/linux-fpr_sse_x86_64.core
    lldb/test/API/functionalities/postmortem/elf-core/linux-i386.core
    lldb/test/API/functionalities/postmortem/elf-core/linux-i386.out
    lldb/test/API/functionalities/postmortem/elf-core/linux-mips64el-gnuabi64.core
    lldb/test/API/functionalities/postmortem/elf-core/linux-mips64el-gnuabi64.out
    lldb/test/API/functionalities/postmortem/elf-core/linux-mips64el-gnuabin32.core
    lldb/test/API/functionalities/postmortem/elf-core/linux-mips64el-gnuabin32.out
    lldb/test/API/functionalities/postmortem/elf-core/linux-mipsel-gnuabio32.core
    lldb/test/API/functionalities/postmortem/elf-core/linux-mipsel-gnuabio32.out
    lldb/test/API/functionalities/postmortem/elf-core/linux-ppc64le.core
    lldb/test/API/functionalities/postmortem/elf-core/linux-ppc64le.out
    lldb/test/API/functionalities/postmortem/elf-core/linux-s390x.core
    lldb/test/API/functionalities/postmortem/elf-core/linux-s390x.out
    lldb/test/API/functionalities/postmortem/elf-core/linux-x86_64.core
    lldb/test/API/functionalities/postmortem/elf-core/linux-x86_64.out
    lldb/test/API/functionalities/postmortem/elf-core/main.c
    lldb/test/API/functionalities/postmortem/elf-core/make-core.sh
    lldb/test/API/functionalities/postmortem/elf-core/thread_crash/TestLinuxCoreThreads.py
    lldb/test/API/functionalities/postmortem/elf-core/thread_crash/linux-i386.core
    lldb/test/API/functionalities/postmortem/elf-core/thread_crash/linux-x86_64.core
    lldb/test/API/functionalities/postmortem/elf-core/thread_crash/main.cpp
    lldb/test/API/functionalities/postmortem/elf-core/thread_crash/main.mk
    lldb/test/API/functionalities/postmortem/elf-core/thread_crash/make-core.sh
    lldb/test/API/functionalities/postmortem/mach-core/TestMachCore.py
    lldb/test/API/functionalities/postmortem/mach-core/operating_system.py
    lldb/test/API/functionalities/postmortem/mach-core/test.core.yaml
    lldb/test/API/functionalities/postmortem/minidump-new/TestMiniDumpNew.py
    lldb/test/API/functionalities/postmortem/minidump-new/TestMiniDumpUUID.py
    lldb/test/API/functionalities/postmortem/minidump-new/arm-linux.yaml
    lldb/test/API/functionalities/postmortem/minidump-new/arm-macos.yaml
    lldb/test/API/functionalities/postmortem/minidump-new/arm64-macos.yaml
    lldb/test/API/functionalities/postmortem/minidump-new/install_breakpad.cpp
    lldb/test/API/functionalities/postmortem/minidump-new/libuuidmatch.yaml
    lldb/test/API/functionalities/postmortem/minidump-new/libuuidmismatch.yaml
    lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-partial-uuids-match.yaml
    lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-partial-uuids-mismatch.yaml
    lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-same-uuids.yaml
    lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-uuids-elf-build-id-16.yaml
    lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-uuids-elf-build-id-20.yaml
    lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-uuids-elf-build-id-zero.yaml
    lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-uuids-no-age.yaml
    lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-uuids-with-age.yaml
    lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-zero-uuids.yaml
    lldb/test/API/functionalities/postmortem/minidump-new/linux-x86_64
    lldb/test/API/functionalities/postmortem/minidump-new/linux-x86_64.cpp
    lldb/test/API/functionalities/postmortem/minidump-new/linux-x86_64.dmp
    lldb/test/API/functionalities/postmortem/minidump-new/linux-x86_64.yaml
    lldb/test/API/functionalities/postmortem/minidump-new/linux-x86_64_not_crashed
    lldb/test/API/functionalities/postmortem/minidump-new/linux-x86_64_not_crashed.cpp
    lldb/test/API/functionalities/postmortem/minidump-new/linux-x86_64_not_crashed.dmp
    lldb/test/API/functionalities/postmortem/minidump-new/linux-x86_64_null_signal.yaml
    lldb/test/API/functionalities/postmortem/minidump-new/macos-arm-uuids-no-age.yaml
    lldb/test/API/functionalities/postmortem/minidump-new/makefile.txt
    lldb/test/API/functionalities/postmortem/minidump-new/regions-linux-map.yaml
    lldb/test/API/functionalities/postmortem/minidump-new/relative_module_name.yaml
    lldb/test/API/functionalities/postmortem/minidump/Makefile
    lldb/test/API/functionalities/postmortem/minidump/TestMiniDump.py
    lldb/test/API/functionalities/postmortem/minidump/fizzbuzz.cpp
    lldb/test/API/functionalities/postmortem/minidump/fizzbuzz.syms
    lldb/test/API/functionalities/postmortem/minidump/fizzbuzz_no_heap.dmp
    lldb/test/API/functionalities/postmortem/minidump/main.cpp
    lldb/test/API/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.aarch64
    lldb/test/API/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.aarch64.core
    lldb/test/API/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.amd64
    lldb/test/API/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.amd64.core
    lldb/test/API/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.c
    lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.aarch64
    lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.aarch64.core
    lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.amd64
    lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.amd64.core
    lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.c
    lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.aarch64
    lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.aarch64.core
    lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.amd64
    lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.amd64.core
    lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.c
    lldb/test/API/functionalities/postmortem/netbsd-core/GNUmakefile
    lldb/test/API/functionalities/postmortem/netbsd-core/TestNetBSDCore.py
    lldb/test/API/functionalities/postmortem/wow64_minidump/TestWow64MiniDump.py
    lldb/test/API/functionalities/postmortem/wow64_minidump/fizzbuzz.cpp
    lldb/test/API/functionalities/postmortem/wow64_minidump/fizzbuzz_wow64.dmp
    lldb/test/API/functionalities/pre_run_dylibs/Makefile
    lldb/test/API/functionalities/pre_run_dylibs/TestPreRunDylibs.py
    lldb/test/API/functionalities/pre_run_dylibs/foo.cpp
    lldb/test/API/functionalities/pre_run_dylibs/foo.h
    lldb/test/API/functionalities/pre_run_dylibs/main.cpp
    lldb/test/API/functionalities/process_group/Makefile
    lldb/test/API/functionalities/process_group/TestChangeProcessGroup.py
    lldb/test/API/functionalities/process_group/main.c
    lldb/test/API/functionalities/process_save_core/Makefile
    lldb/test/API/functionalities/process_save_core/TestProcessSaveCore.py
    lldb/test/API/functionalities/process_save_core/main.cpp
    lldb/test/API/functionalities/ptr_refs/Makefile
    lldb/test/API/functionalities/ptr_refs/TestPtrRefs.py
    lldb/test/API/functionalities/ptr_refs/main.c
    lldb/test/API/functionalities/recursion/Makefile
    lldb/test/API/functionalities/recursion/TestValueObjectRecursion.py
    lldb/test/API/functionalities/recursion/main.cpp
    lldb/test/API/functionalities/rerun/Makefile
    lldb/test/API/functionalities/rerun/TestRerun.py
    lldb/test/API/functionalities/rerun/main.cpp
    lldb/test/API/functionalities/return-value/Makefile
    lldb/test/API/functionalities/return-value/TestReturnValue.py
    lldb/test/API/functionalities/return-value/call-func.cpp
    lldb/test/API/functionalities/set-data/Makefile
    lldb/test/API/functionalities/set-data/TestSetData.py
    lldb/test/API/functionalities/set-data/main.m
    lldb/test/API/functionalities/show_location/TestShowLocationDwarf5.py
    lldb/test/API/functionalities/show_location/a.yaml
    lldb/test/API/functionalities/signal/Makefile
    lldb/test/API/functionalities/signal/TestSendSignal.py
    lldb/test/API/functionalities/signal/handle-abrt/Makefile
    lldb/test/API/functionalities/signal/handle-abrt/TestHandleAbort.py
    lldb/test/API/functionalities/signal/handle-abrt/main.c
    lldb/test/API/functionalities/signal/handle-segv/Makefile
    lldb/test/API/functionalities/signal/handle-segv/TestHandleSegv.py
    lldb/test/API/functionalities/signal/handle-segv/main.c
    lldb/test/API/functionalities/signal/main.c
    lldb/test/API/functionalities/signal/raise/Makefile
    lldb/test/API/functionalities/signal/raise/TestRaise.py
    lldb/test/API/functionalities/signal/raise/main.c
    lldb/test/API/functionalities/source-map/TestTargetSourceMap.py
    lldb/test/API/functionalities/source-map/Trivial/main.c
    lldb/test/API/functionalities/source-map/a.yaml
    lldb/test/API/functionalities/stats_api/Makefile
    lldb/test/API/functionalities/stats_api/TestStatisticsAPI.py
    lldb/test/API/functionalities/stats_api/main.c
    lldb/test/API/functionalities/step-avoids-no-debug/Makefile
    lldb/test/API/functionalities/step-avoids-no-debug/TestStepNoDebug.py
    lldb/test/API/functionalities/step-avoids-no-debug/with-debug.c
    lldb/test/API/functionalities/step-avoids-no-debug/without-debug.c
    lldb/test/API/functionalities/step_scripted/Makefile
    lldb/test/API/functionalities/step_scripted/Steps.py
    lldb/test/API/functionalities/step_scripted/TestStepScripted.py
    lldb/test/API/functionalities/step_scripted/main.c
    lldb/test/API/functionalities/tail_call_frames/ambiguous_tail_call_seq1/Makefile
    lldb/test/API/functionalities/tail_call_frames/ambiguous_tail_call_seq1/TestAmbiguousTailCallSeq1.py
    lldb/test/API/functionalities/tail_call_frames/ambiguous_tail_call_seq1/main.cpp
    lldb/test/API/functionalities/tail_call_frames/ambiguous_tail_call_seq2/Makefile
    lldb/test/API/functionalities/tail_call_frames/ambiguous_tail_call_seq2/TestAmbiguousTailCallSeq2.py
    lldb/test/API/functionalities/tail_call_frames/ambiguous_tail_call_seq2/main.cpp
    lldb/test/API/functionalities/tail_call_frames/cross_dso/Makefile
    lldb/test/API/functionalities/tail_call_frames/cross_dso/One.mk
    lldb/test/API/functionalities/tail_call_frames/cross_dso/One/One.c
    lldb/test/API/functionalities/tail_call_frames/cross_dso/TestCrossDSOTailCalls.py
    lldb/test/API/functionalities/tail_call_frames/cross_dso/Two.mk
    lldb/test/API/functionalities/tail_call_frames/cross_dso/Two/Two.c
    lldb/test/API/functionalities/tail_call_frames/cross_dso/main.c
    lldb/test/API/functionalities/tail_call_frames/cross_dso/shared.h
    lldb/test/API/functionalities/tail_call_frames/cross_object/Makefile
    lldb/test/API/functionalities/tail_call_frames/cross_object/One.c
    lldb/test/API/functionalities/tail_call_frames/cross_object/TestCrossObjectTailCalls.py
    lldb/test/API/functionalities/tail_call_frames/cross_object/Two.c
    lldb/test/API/functionalities/tail_call_frames/cross_object/main.c
    lldb/test/API/functionalities/tail_call_frames/cross_object/shared.h
    lldb/test/API/functionalities/tail_call_frames/disambiguate_call_site/Makefile
    lldb/test/API/functionalities/tail_call_frames/disambiguate_call_site/TestDisambiguateCallSite.py
    lldb/test/API/functionalities/tail_call_frames/disambiguate_call_site/main.cpp
    lldb/test/API/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/Makefile
    lldb/test/API/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/TestDisambiguatePathsToCommonSink.py
    lldb/test/API/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/main.cpp
    lldb/test/API/functionalities/tail_call_frames/disambiguate_tail_call_seq/Makefile
    lldb/test/API/functionalities/tail_call_frames/disambiguate_tail_call_seq/TestDisambiguateTailCallSeq.py
    lldb/test/API/functionalities/tail_call_frames/disambiguate_tail_call_seq/main.cpp
    lldb/test/API/functionalities/tail_call_frames/inlining_and_tail_calls/Makefile
    lldb/test/API/functionalities/tail_call_frames/inlining_and_tail_calls/TestInliningAndTailCalls.py
    lldb/test/API/functionalities/tail_call_frames/inlining_and_tail_calls/main.cpp
    lldb/test/API/functionalities/tail_call_frames/sbapi_support/Makefile
    lldb/test/API/functionalities/tail_call_frames/sbapi_support/TestTailCallFrameSBAPI.py
    lldb/test/API/functionalities/tail_call_frames/sbapi_support/main.cpp
    lldb/test/API/functionalities/tail_call_frames/thread_step_out_message/Makefile
    lldb/test/API/functionalities/tail_call_frames/thread_step_out_message/TestArtificialFrameStepOutMessage.py
    lldb/test/API/functionalities/tail_call_frames/thread_step_out_message/main.cpp
    lldb/test/API/functionalities/tail_call_frames/thread_step_out_or_return/Makefile
    lldb/test/API/functionalities/tail_call_frames/thread_step_out_or_return/TestSteppingOutWithArtificialFrames.py
    lldb/test/API/functionalities/tail_call_frames/thread_step_out_or_return/main.cpp
    lldb/test/API/functionalities/tail_call_frames/unambiguous_sequence/Makefile
    lldb/test/API/functionalities/tail_call_frames/unambiguous_sequence/TestUnambiguousTailCalls.py
    lldb/test/API/functionalities/tail_call_frames/unambiguous_sequence/main.cpp
    lldb/test/API/functionalities/target-new-solib-notifications/Makefile
    lldb/test/API/functionalities/target-new-solib-notifications/TestModuleLoadedNotifys.py
    lldb/test/API/functionalities/target-new-solib-notifications/main.cpp
    lldb/test/API/functionalities/target_var/Makefile
    lldb/test/API/functionalities/target_var/TestTargetVar.py
    lldb/test/API/functionalities/target_var/globals.c
    lldb/test/API/functionalities/target_var/globals.ll
    lldb/test/API/functionalities/testid/TestTestId.py
    lldb/test/API/functionalities/thread/backtrace_all/Makefile
    lldb/test/API/functionalities/thread/backtrace_all/ParallelTask.cpp
    lldb/test/API/functionalities/thread/backtrace_all/TestBacktraceAll.py
    lldb/test/API/functionalities/thread/backtrace_limit/Makefile
    lldb/test/API/functionalities/thread/backtrace_limit/TestBacktraceLimit.py
    lldb/test/API/functionalities/thread/backtrace_limit/main.cpp
    lldb/test/API/functionalities/thread/break_after_join/Makefile
    lldb/test/API/functionalities/thread/break_after_join/TestBreakAfterJoin.py
    lldb/test/API/functionalities/thread/break_after_join/main.cpp
    lldb/test/API/functionalities/thread/concurrent_events/Makefile
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentBreakpointDelayBreakpointOneSignal.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentBreakpointOneDelayBreakpointThreads.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentBreakpointsDelayedBreakpointOneWatchpoint.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentCrashWithBreak.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentCrashWithSignal.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentCrashWithWatchpoint.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentCrashWithWatchpointBreakpointSignal.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentDelaySignalBreak.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentDelaySignalWatch.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentDelayWatchBreak.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentDelayedCrashWithBreakpointSignal.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentDelayedCrashWithBreakpointWatchpoint.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentManyBreakpoints.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentManyCrash.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentManySignals.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentManyWatchpoints.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentNWatchNBreak.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentSignalBreak.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentSignalDelayBreak.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentSignalDelayWatch.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentSignalNWatchNBreak.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentSignalWatch.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentSignalWatchBreak.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointThreads.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneDelaySignal.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneSignal.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneWatchpoint.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointThreads.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneBreakpoint.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneDelayBreakpoint.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneSignal.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentWatchBreak.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentWatchBreakDelay.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentWatchpointDelayWatchpointOneBreakpoint.py
    lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentWatchpointWithDelayWatchpointThreads.py
    lldb/test/API/functionalities/thread/concurrent_events/main.cpp
    lldb/test/API/functionalities/thread/crash_during_step/Makefile
    lldb/test/API/functionalities/thread/crash_during_step/TestCrashDuringStep.py
    lldb/test/API/functionalities/thread/crash_during_step/main.cpp
    lldb/test/API/functionalities/thread/create_after_attach/Makefile
    lldb/test/API/functionalities/thread/create_after_attach/TestCreateAfterAttach.py
    lldb/test/API/functionalities/thread/create_after_attach/main.cpp
    lldb/test/API/functionalities/thread/create_during_step/Makefile
    lldb/test/API/functionalities/thread/create_during_step/TestCreateDuringStep.py
    lldb/test/API/functionalities/thread/create_during_step/main.cpp
    lldb/test/API/functionalities/thread/exit_during_break/Makefile
    lldb/test/API/functionalities/thread/exit_during_break/TestExitDuringBreak.py
    lldb/test/API/functionalities/thread/exit_during_break/main.cpp
    lldb/test/API/functionalities/thread/exit_during_step/Makefile
    lldb/test/API/functionalities/thread/exit_during_step/TestExitDuringStep.py
    lldb/test/API/functionalities/thread/exit_during_step/main.cpp
    lldb/test/API/functionalities/thread/jump/Makefile
    lldb/test/API/functionalities/thread/jump/TestThreadJump.py
    lldb/test/API/functionalities/thread/jump/main.cpp
    lldb/test/API/functionalities/thread/jump/other.cpp
    lldb/test/API/functionalities/thread/multi_break/Makefile
    lldb/test/API/functionalities/thread/multi_break/TestMultipleBreakpoints.py
    lldb/test/API/functionalities/thread/multi_break/main.cpp
    lldb/test/API/functionalities/thread/num_threads/Makefile
    lldb/test/API/functionalities/thread/num_threads/TestNumThreads.py
    lldb/test/API/functionalities/thread/num_threads/main.cpp
    lldb/test/API/functionalities/thread/state/Makefile
    lldb/test/API/functionalities/thread/state/TestThreadStates.py
    lldb/test/API/functionalities/thread/state/main.cpp
    lldb/test/API/functionalities/thread/step_out/Makefile
    lldb/test/API/functionalities/thread/step_out/TestThreadStepOut.py
    lldb/test/API/functionalities/thread/step_out/main.cpp
    lldb/test/API/functionalities/thread/step_until/.categories
    lldb/test/API/functionalities/thread/step_until/Makefile
    lldb/test/API/functionalities/thread/step_until/TestStepUntil.py
    lldb/test/API/functionalities/thread/step_until/main.c
    lldb/test/API/functionalities/thread/thread_exit/Makefile
    lldb/test/API/functionalities/thread/thread_exit/TestThreadExit.py
    lldb/test/API/functionalities/thread/thread_exit/main.cpp
    lldb/test/API/functionalities/thread/thread_specific_break/Makefile
    lldb/test/API/functionalities/thread/thread_specific_break/TestThreadSpecificBreakpoint.py
    lldb/test/API/functionalities/thread/thread_specific_break/main.cpp
    lldb/test/API/functionalities/thread/thread_specific_break_plus_condition/Makefile
    lldb/test/API/functionalities/thread/thread_specific_break_plus_condition/TestThreadSpecificBpPlusCondition.py
    lldb/test/API/functionalities/thread/thread_specific_break_plus_condition/main.cpp
    lldb/test/API/functionalities/tsan/basic/Makefile
    lldb/test/API/functionalities/tsan/basic/TestTsanBasic.py
    lldb/test/API/functionalities/tsan/basic/main.c
    lldb/test/API/functionalities/tsan/cpp_global_location/Makefile
    lldb/test/API/functionalities/tsan/cpp_global_location/TestTsanCPPGlobalLocation.py
    lldb/test/API/functionalities/tsan/cpp_global_location/main.cpp
    lldb/test/API/functionalities/tsan/global_location/Makefile
    lldb/test/API/functionalities/tsan/global_location/TestTsanGlobalLocation.py
    lldb/test/API/functionalities/tsan/global_location/main.c
    lldb/test/API/functionalities/tsan/multiple/Makefile
    lldb/test/API/functionalities/tsan/multiple/TestTsanMultiple.py
    lldb/test/API/functionalities/tsan/multiple/main.m
    lldb/test/API/functionalities/tsan/thread_leak/Makefile
    lldb/test/API/functionalities/tsan/thread_leak/TestTsanThreadLeak.py
    lldb/test/API/functionalities/tsan/thread_leak/main.c
    lldb/test/API/functionalities/tsan/thread_numbers/Makefile
    lldb/test/API/functionalities/tsan/thread_numbers/TestTsanThreadNumbers.py
    lldb/test/API/functionalities/tsan/thread_numbers/main.c
    lldb/test/API/functionalities/tty/Makefile
    lldb/test/API/functionalities/tty/TestTerminal.py
    lldb/test/API/functionalities/tty/main.c
    lldb/test/API/functionalities/type_completion/Makefile
    lldb/test/API/functionalities/type_completion/TestTypeCompletion.py
    lldb/test/API/functionalities/type_completion/main.cpp
    lldb/test/API/functionalities/type_lookup/Makefile
    lldb/test/API/functionalities/type_lookup/TestTypeLookup.py
    lldb/test/API/functionalities/type_lookup/main.mm
    lldb/test/API/functionalities/ubsan/basic/Makefile
    lldb/test/API/functionalities/ubsan/basic/TestUbsanBasic.py
    lldb/test/API/functionalities/ubsan/basic/main.c
    lldb/test/API/functionalities/ubsan/user-expression/Makefile
    lldb/test/API/functionalities/ubsan/user-expression/TestUbsanUserExpression.py
    lldb/test/API/functionalities/ubsan/user-expression/main.c
    lldb/test/API/functionalities/unwind/ehframe/Makefile
    lldb/test/API/functionalities/unwind/ehframe/TestEhFrameUnwind.py
    lldb/test/API/functionalities/unwind/ehframe/main.c
    lldb/test/API/functionalities/unwind/noreturn/Makefile
    lldb/test/API/functionalities/unwind/noreturn/TestNoreturnUnwind.py
    lldb/test/API/functionalities/unwind/noreturn/main.c
    lldb/test/API/functionalities/unwind/noreturn/module-end/TestNoReturnModuleEnd.py
    lldb/test/API/functionalities/unwind/noreturn/module-end/a.s
    lldb/test/API/functionalities/unwind/noreturn/module-end/test.core
    lldb/test/API/functionalities/unwind/noreturn/module-end/test.out
    lldb/test/API/functionalities/unwind/sigtramp/Makefile
    lldb/test/API/functionalities/unwind/sigtramp/TestSigtrampUnwind.py
    lldb/test/API/functionalities/unwind/sigtramp/main.c
    lldb/test/API/functionalities/unwind/standard/Makefile
    lldb/test/API/functionalities/unwind/standard/TestStandardUnwind.py
    lldb/test/API/functionalities/unwind/standard/hand_written/divmod.cpp
    lldb/test/API/functionalities/unwind/standard/hand_written/fprintf.cpp
    lldb/test/API/functionalities/unwind/standard/hand_written/new_delete.cpp
    lldb/test/API/functionalities/value_md5_crash/Makefile
    lldb/test/API/functionalities/value_md5_crash/TestValueMD5Crash.py
    lldb/test/API/functionalities/value_md5_crash/main.cpp
    lldb/test/API/functionalities/var_path/Makefile
    lldb/test/API/functionalities/var_path/TestVarPath.py
    lldb/test/API/functionalities/var_path/main.cpp
    lldb/test/API/functionalities/wrong_commands/.categories
    lldb/test/API/functionalities/wrong_commands/TestWrongCommands.py
    lldb/test/API/iohandler/completion/TestIOHandlerCompletion.py
    lldb/test/API/iohandler/completion/main.c
    lldb/test/API/iohandler/unicode/TestUnicode.py
    lldb/test/API/issue_verification/README.txt
    lldb/test/API/issue_verification/TestExpectedTimeout.py.park
    lldb/test/API/issue_verification/TestFail.py.park
    lldb/test/API/issue_verification/TestInvalidDecorator.py.park
    lldb/test/API/issue_verification/TestRerunFail.py.park
    lldb/test/API/issue_verification/TestRerunFileLevelTimeout.py.park
    lldb/test/API/issue_verification/TestRerunInline.py.park
    lldb/test/API/issue_verification/TestRerunTimeout.py.park
    lldb/test/API/issue_verification/TestSignal.py.park
    lldb/test/API/issue_verification/TestSignalOutsideTestMethod.py.park
    lldb/test/API/issue_verification/TestTimeout.py.park
    lldb/test/API/issue_verification/disable.py
    lldb/test/API/issue_verification/enable.py
    lldb/test/API/issue_verification/inline_rerun_inferior.cpp
    lldb/test/API/issue_verification/rerun_base.py
    lldb/test/API/lang/c/anonymous/Makefile
    lldb/test/API/lang/c/anonymous/TestAnonymous.py
    lldb/test/API/lang/c/anonymous/main.c
    lldb/test/API/lang/c/array_types/Makefile
    lldb/test/API/lang/c/array_types/TestArrayTypes.py
    lldb/test/API/lang/c/array_types/cmds.txt
    lldb/test/API/lang/c/array_types/main.c
    lldb/test/API/lang/c/bitfields/Makefile
    lldb/test/API/lang/c/bitfields/TestBitfields.py
    lldb/test/API/lang/c/bitfields/main.c
    lldb/test/API/lang/c/blocks/Makefile
    lldb/test/API/lang/c/blocks/TestBlocks.py
    lldb/test/API/lang/c/blocks/main.c
    lldb/test/API/lang/c/conflicting-symbol/Makefile
    lldb/test/API/lang/c/conflicting-symbol/One.mk
    lldb/test/API/lang/c/conflicting-symbol/One/One.c
    lldb/test/API/lang/c/conflicting-symbol/One/One.h
    lldb/test/API/lang/c/conflicting-symbol/One/OneConstant.c
    lldb/test/API/lang/c/conflicting-symbol/TestConflictingSymbol.py
    lldb/test/API/lang/c/conflicting-symbol/Two.mk
    lldb/test/API/lang/c/conflicting-symbol/Two/Two.c
    lldb/test/API/lang/c/conflicting-symbol/Two/Two.h
    lldb/test/API/lang/c/conflicting-symbol/Two/TwoConstant.c
    lldb/test/API/lang/c/conflicting-symbol/main.c
    lldb/test/API/lang/c/const_variables/Makefile
    lldb/test/API/lang/c/const_variables/TestConstVariables.py
    lldb/test/API/lang/c/const_variables/functions.c
    lldb/test/API/lang/c/const_variables/main.c
    lldb/test/API/lang/c/enum_types/Makefile
    lldb/test/API/lang/c/enum_types/TestEnumTypes.py
    lldb/test/API/lang/c/enum_types/main.c
    lldb/test/API/lang/c/find_struct_type/Makefile
    lldb/test/API/lang/c/find_struct_type/TestFindStructTypes.py
    lldb/test/API/lang/c/find_struct_type/main.c
    lldb/test/API/lang/c/forward/Makefile
    lldb/test/API/lang/c/forward/README.txt
    lldb/test/API/lang/c/forward/TestForwardDeclaration.py
    lldb/test/API/lang/c/forward/foo.c
    lldb/test/API/lang/c/forward/foo.h
    lldb/test/API/lang/c/forward/main.c
    lldb/test/API/lang/c/function_types/Makefile
    lldb/test/API/lang/c/function_types/TestFunctionTypes.py
    lldb/test/API/lang/c/function_types/main.c
    lldb/test/API/lang/c/global_variables/Makefile
    lldb/test/API/lang/c/global_variables/TestGlobalVariables.py
    lldb/test/API/lang/c/global_variables/a.c
    lldb/test/API/lang/c/global_variables/cmds.txt
    lldb/test/API/lang/c/global_variables/main.c
    lldb/test/API/lang/c/inlines/TestRedefinitionsInInlines.py
    lldb/test/API/lang/c/inlines/main.c
    lldb/test/API/lang/c/local_types/TestUseClosestType.py
    lldb/test/API/lang/c/local_types/main.c
    lldb/test/API/lang/c/local_types/other.c
    lldb/test/API/lang/c/local_variables/Makefile
    lldb/test/API/lang/c/local_variables/TestLocalVariables.py
    lldb/test/API/lang/c/local_variables/main.c
    lldb/test/API/lang/c/modules/Makefile
    lldb/test/API/lang/c/modules/TestCModules.py
    lldb/test/API/lang/c/modules/main.c
    lldb/test/API/lang/c/offsetof/TestOffsetof.py
    lldb/test/API/lang/c/offsetof/main.c
    lldb/test/API/lang/c/recurse/Makefile
    lldb/test/API/lang/c/recurse/main.c
    lldb/test/API/lang/c/register_variables/Makefile
    lldb/test/API/lang/c/register_variables/TestRegisterVariables.py
    lldb/test/API/lang/c/register_variables/test.c
    lldb/test/API/lang/c/set_values/Makefile
    lldb/test/API/lang/c/set_values/TestSetValues.py
    lldb/test/API/lang/c/set_values/main.c
    lldb/test/API/lang/c/shared_lib/Makefile
    lldb/test/API/lang/c/shared_lib/TestSharedLib.py
    lldb/test/API/lang/c/shared_lib/foo.c
    lldb/test/API/lang/c/shared_lib/foo.h
    lldb/test/API/lang/c/shared_lib/main.c
    lldb/test/API/lang/c/shared_lib_stripped_symbols/Makefile
    lldb/test/API/lang/c/shared_lib_stripped_symbols/TestSharedLibStrippedSymbols.py
    lldb/test/API/lang/c/shared_lib_stripped_symbols/foo.c
    lldb/test/API/lang/c/shared_lib_stripped_symbols/foo.h
    lldb/test/API/lang/c/shared_lib_stripped_symbols/main.c
    lldb/test/API/lang/c/step-target/.categories
    lldb/test/API/lang/c/step-target/Makefile
    lldb/test/API/lang/c/step-target/TestStepTarget.py
    lldb/test/API/lang/c/step-target/main.c
    lldb/test/API/lang/c/step_over_no_deadlock/Makefile
    lldb/test/API/lang/c/step_over_no_deadlock/TestStepOverDoesntBlock.py
    lldb/test/API/lang/c/step_over_no_deadlock/locking.cpp
    lldb/test/API/lang/c/stepping/Makefile
    lldb/test/API/lang/c/stepping/TestStepAndBreakpoints.py
    lldb/test/API/lang/c/stepping/TestThreadStepping.py
    lldb/test/API/lang/c/stepping/main.c
    lldb/test/API/lang/c/strings/Makefile
    lldb/test/API/lang/c/strings/TestCStrings.py
    lldb/test/API/lang/c/strings/main.c
    lldb/test/API/lang/c/struct_types/TestStructTypes.py
    lldb/test/API/lang/c/struct_types/main.c
    lldb/test/API/lang/c/tls_globals/Makefile
    lldb/test/API/lang/c/tls_globals/TestTlsGlobals.py
    lldb/test/API/lang/c/tls_globals/a.c
    lldb/test/API/lang/c/tls_globals/main.c
    lldb/test/API/lang/c/typedef/Makefile
    lldb/test/API/lang/c/typedef/Testtypedef.py
    lldb/test/API/lang/c/typedef/main.c
    lldb/test/API/lang/c/unicode/Makefile
    lldb/test/API/lang/c/unicode/TestUnicodeSymbols.py
    lldb/test/API/lang/c/unicode/main.c
    lldb/test/API/lang/c/unions/Makefile
    lldb/test/API/lang/c/unions/TestUnionMembers.py
    lldb/test/API/lang/c/unions/main.c
    lldb/test/API/lang/c/vla/Makefile
    lldb/test/API/lang/c/vla/TestVLA.py
    lldb/test/API/lang/c/vla/main.c
    lldb/test/API/lang/cpp/accelerator-table/Makefile
    lldb/test/API/lang/cpp/accelerator-table/TestCPPAccelerator.py
    lldb/test/API/lang/cpp/accelerator-table/a.cpp
    lldb/test/API/lang/cpp/accelerator-table/b.cpp
    lldb/test/API/lang/cpp/accelerator-table/c.cpp
    lldb/test/API/lang/cpp/accelerator-table/d.cpp
    lldb/test/API/lang/cpp/accelerator-table/e.cpp
    lldb/test/API/lang/cpp/accelerator-table/f.cpp
    lldb/test/API/lang/cpp/accelerator-table/g.cpp
    lldb/test/API/lang/cpp/accelerator-table/main.cpp
    lldb/test/API/lang/cpp/accelerator-table/source.h
    lldb/test/API/lang/cpp/auto/Makefile
    lldb/test/API/lang/cpp/auto/TestCPPAuto.py
    lldb/test/API/lang/cpp/auto/main.cpp
    lldb/test/API/lang/cpp/bitfields/Makefile
    lldb/test/API/lang/cpp/bitfields/TestCppBitfields.py
    lldb/test/API/lang/cpp/bitfields/main.cpp
    lldb/test/API/lang/cpp/bool/Makefile
    lldb/test/API/lang/cpp/bool/TestCPPBool.py
    lldb/test/API/lang/cpp/bool/main.cpp
    lldb/test/API/lang/cpp/breakpoint-commands/Makefile
    lldb/test/API/lang/cpp/breakpoint-commands/TestCPPBreakpointCommands.py
    lldb/test/API/lang/cpp/breakpoint-commands/nested.cpp
    lldb/test/API/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/Makefile
    lldb/test/API/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/TestBreakpointInMemberFuncWNonPrimitiveParams.py
    lldb/test/API/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/a.cpp
    lldb/test/API/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/a.h
    lldb/test/API/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/main.cpp
    lldb/test/API/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/module.modulemap
    lldb/test/API/lang/cpp/call-function/Makefile
    lldb/test/API/lang/cpp/call-function/TestCallCPPFunction.py
    lldb/test/API/lang/cpp/call-function/main.cpp
    lldb/test/API/lang/cpp/chained-calls/Makefile
    lldb/test/API/lang/cpp/chained-calls/TestCppChainedCalls.py
    lldb/test/API/lang/cpp/chained-calls/main.cpp
    lldb/test/API/lang/cpp/char1632_t/.categories
    lldb/test/API/lang/cpp/char1632_t/Makefile
    lldb/test/API/lang/cpp/char1632_t/TestChar1632T.py
    lldb/test/API/lang/cpp/char1632_t/main.cpp
    lldb/test/API/lang/cpp/char8_t/Makefile
    lldb/test/API/lang/cpp/char8_t/TestCxxChar8_t.py
    lldb/test/API/lang/cpp/char8_t/main.cpp
    lldb/test/API/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py
    lldb/test/API/lang/cpp/class-template-parameter-pack/main.cpp
    lldb/test/API/lang/cpp/class_static/Makefile
    lldb/test/API/lang/cpp/class_static/TestStaticVariables.py
    lldb/test/API/lang/cpp/class_static/main.cpp
    lldb/test/API/lang/cpp/class_types/Makefile
    lldb/test/API/lang/cpp/class_types/TestClassTypes.py
    lldb/test/API/lang/cpp/class_types/TestClassTypesDisassembly.py
    lldb/test/API/lang/cpp/class_types/cmds.txt
    lldb/test/API/lang/cpp/class_types/main.cpp
    lldb/test/API/lang/cpp/const_this/TestConstThis.py
    lldb/test/API/lang/cpp/const_this/main.cpp
    lldb/test/API/lang/cpp/constructors/Makefile
    lldb/test/API/lang/cpp/constructors/TestCppConstructors.py
    lldb/test/API/lang/cpp/constructors/main.cpp
    lldb/test/API/lang/cpp/covariant-return-types/Makefile
    lldb/test/API/lang/cpp/covariant-return-types/TestCovariantReturnTypes.py
    lldb/test/API/lang/cpp/covariant-return-types/main.cpp
    lldb/test/API/lang/cpp/diamond/Makefile
    lldb/test/API/lang/cpp/diamond/TestDiamond.py
    lldb/test/API/lang/cpp/diamond/main.cpp
    lldb/test/API/lang/cpp/dynamic-value-same-basename/Makefile
    lldb/test/API/lang/cpp/dynamic-value-same-basename/TestDynamicValueSameBase.py
    lldb/test/API/lang/cpp/dynamic-value-same-basename/main.cpp
    lldb/test/API/lang/cpp/dynamic-value/Makefile
    lldb/test/API/lang/cpp/dynamic-value/TestCppValueCast.py
    lldb/test/API/lang/cpp/dynamic-value/TestDynamicValue.py
    lldb/test/API/lang/cpp/dynamic-value/pass-to-base.cpp
    lldb/test/API/lang/cpp/dynamic-value/sbvalue-cast.cpp
    lldb/test/API/lang/cpp/enum_types/Makefile
    lldb/test/API/lang/cpp/enum_types/TestCPP11EnumTypes.py
    lldb/test/API/lang/cpp/enum_types/main.cpp
    lldb/test/API/lang/cpp/exceptions/Makefile
    lldb/test/API/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py
    lldb/test/API/lang/cpp/exceptions/exceptions.cpp
    lldb/test/API/lang/cpp/extern_c/TestExternCSymbols.py
    lldb/test/API/lang/cpp/extern_c/main.cpp
    lldb/test/API/lang/cpp/frame-var-anon-unions/Makefile
    lldb/test/API/lang/cpp/frame-var-anon-unions/TestFrameVariableAnonymousUnions.py
    lldb/test/API/lang/cpp/frame-var-anon-unions/main.cpp
    lldb/test/API/lang/cpp/function-qualifiers/Makefile
    lldb/test/API/lang/cpp/function-qualifiers/TestCppFunctionQualifiers.py
    lldb/test/API/lang/cpp/function-qualifiers/main.cpp
    lldb/test/API/lang/cpp/function-template-parameter-pack/TestFunctionTemplateParameterPack.py
    lldb/test/API/lang/cpp/function-template-parameter-pack/main.cpp
    lldb/test/API/lang/cpp/function_refs/TestFunctionRefs.py
    lldb/test/API/lang/cpp/function_refs/main.cpp
    lldb/test/API/lang/cpp/global_operators/Makefile
    lldb/test/API/lang/cpp/global_operators/TestCppGlobalOperators.py
    lldb/test/API/lang/cpp/global_operators/main.cpp
    lldb/test/API/lang/cpp/global_variables/Makefile
    lldb/test/API/lang/cpp/global_variables/TestCPPGlobalVariables.py
    lldb/test/API/lang/cpp/global_variables/main.cpp
    lldb/test/API/lang/cpp/gmodules-templates/TestGModules.py
    lldb/test/API/lang/cpp/gmodules-templates/a.h
    lldb/test/API/lang/cpp/gmodules-templates/b.h
    lldb/test/API/lang/cpp/gmodules-templates/main.cpp
    lldb/test/API/lang/cpp/gmodules-templates/memory.h
    lldb/test/API/lang/cpp/gmodules-templates/module.modulemap
    lldb/test/API/lang/cpp/gmodules/Makefile
    lldb/test/API/lang/cpp/gmodules/TestWithModuleDebugging.py
    lldb/test/API/lang/cpp/gmodules/main.cpp
    lldb/test/API/lang/cpp/gmodules/pch.h
    lldb/test/API/lang/cpp/incomplete-types/Makefile
    lldb/test/API/lang/cpp/incomplete-types/TestCppIncompleteTypes.py
    lldb/test/API/lang/cpp/incomplete-types/a.cpp
    lldb/test/API/lang/cpp/incomplete-types/a.h
    lldb/test/API/lang/cpp/incomplete-types/length.cpp
    lldb/test/API/lang/cpp/incomplete-types/length.h
    lldb/test/API/lang/cpp/incomplete-types/main.cpp
    lldb/test/API/lang/cpp/inlines/Makefile
    lldb/test/API/lang/cpp/inlines/TestInlines.py
    lldb/test/API/lang/cpp/inlines/inlines.cpp
    lldb/test/API/lang/cpp/inlines/inlines.h
    lldb/test/API/lang/cpp/lambdas/TestLambdas.py
    lldb/test/API/lang/cpp/lambdas/main.cpp
    lldb/test/API/lang/cpp/limit-debug-info/Makefile
    lldb/test/API/lang/cpp/limit-debug-info/TestWithLimitDebugInfo.py
    lldb/test/API/lang/cpp/limit-debug-info/base.cpp
    lldb/test/API/lang/cpp/limit-debug-info/base.h
    lldb/test/API/lang/cpp/limit-debug-info/derived.cpp
    lldb/test/API/lang/cpp/limit-debug-info/derived.h
    lldb/test/API/lang/cpp/limit-debug-info/main.cpp
    lldb/test/API/lang/cpp/llvm-style/TestLLVMStyle.py
    lldb/test/API/lang/cpp/llvm-style/main.cpp
    lldb/test/API/lang/cpp/member-and-local-vars-with-same-name/Makefile
    lldb/test/API/lang/cpp/member-and-local-vars-with-same-name/TestMembersAndLocalsWithSameName.py
    lldb/test/API/lang/cpp/member-and-local-vars-with-same-name/main.cpp
    lldb/test/API/lang/cpp/modules-import/Inputs/Bar.h
    lldb/test/API/lang/cpp/modules-import/Inputs/Foo.h
    lldb/test/API/lang/cpp/modules-import/Inputs/module.modulemap
    lldb/test/API/lang/cpp/modules-import/Makefile
    lldb/test/API/lang/cpp/modules-import/TestCXXModulesImport.py
    lldb/test/API/lang/cpp/modules-import/main.cpp
    lldb/test/API/lang/cpp/multiple-inheritance/Makefile
    lldb/test/API/lang/cpp/multiple-inheritance/TestCppMultipleInheritance.py
    lldb/test/API/lang/cpp/multiple-inheritance/main.cpp
    lldb/test/API/lang/cpp/namespace/Makefile
    lldb/test/API/lang/cpp/namespace/TestNamespace.py
    lldb/test/API/lang/cpp/namespace/TestNamespaceLookup.py
    lldb/test/API/lang/cpp/namespace/cmds.txt
    lldb/test/API/lang/cpp/namespace/main.cpp
    lldb/test/API/lang/cpp/namespace/ns.cpp
    lldb/test/API/lang/cpp/namespace/ns.h
    lldb/test/API/lang/cpp/namespace/ns2.cpp
    lldb/test/API/lang/cpp/namespace/ns3.cpp
    lldb/test/API/lang/cpp/namespace_conflicts/TestNamespaceConflicts.py
    lldb/test/API/lang/cpp/namespace_conflicts/main.cpp
    lldb/test/API/lang/cpp/namespace_definitions/Makefile
    lldb/test/API/lang/cpp/namespace_definitions/TestNamespaceDefinitions.py
    lldb/test/API/lang/cpp/namespace_definitions/a.cpp
    lldb/test/API/lang/cpp/namespace_definitions/b.cpp
    lldb/test/API/lang/cpp/namespace_definitions/foo.h
    lldb/test/API/lang/cpp/namespace_definitions/main.cpp
    lldb/test/API/lang/cpp/nested-class-other-compilation-unit/Makefile
    lldb/test/API/lang/cpp/nested-class-other-compilation-unit/TestNestedClassWithParentInAnotherCU.py
    lldb/test/API/lang/cpp/nested-class-other-compilation-unit/main.cpp
    lldb/test/API/lang/cpp/nested-class-other-compilation-unit/other.cpp
    lldb/test/API/lang/cpp/nested-class-other-compilation-unit/shared.h
    lldb/test/API/lang/cpp/nsimport/Makefile
    lldb/test/API/lang/cpp/nsimport/TestCppNsImport.py
    lldb/test/API/lang/cpp/nsimport/main.cpp
    lldb/test/API/lang/cpp/offsetof/TestOffsetofCpp.py
    lldb/test/API/lang/cpp/offsetof/main.cpp
    lldb/test/API/lang/cpp/operator-overload/Makefile
    lldb/test/API/lang/cpp/operator-overload/TestOperatorOverload.py
    lldb/test/API/lang/cpp/operator-overload/a.cpp
    lldb/test/API/lang/cpp/operator-overload/b.cpp
    lldb/test/API/lang/cpp/operators/TestCppOperators.py
    lldb/test/API/lang/cpp/operators/main.cpp
    lldb/test/API/lang/cpp/overloaded-functions/Makefile
    lldb/test/API/lang/cpp/overloaded-functions/TestOverloadedFunctions.py
    lldb/test/API/lang/cpp/overloaded-functions/main.cpp
    lldb/test/API/lang/cpp/overloaded-functions/static-a.cpp
    lldb/test/API/lang/cpp/overloaded-functions/static-b.cpp
    lldb/test/API/lang/cpp/printf/TestPrintf.py
    lldb/test/API/lang/cpp/printf/main.cpp
    lldb/test/API/lang/cpp/rvalue-references/Makefile
    lldb/test/API/lang/cpp/rvalue-references/TestRvalueReferences.py
    lldb/test/API/lang/cpp/rvalue-references/main.cpp
    lldb/test/API/lang/cpp/scope/Makefile
    lldb/test/API/lang/cpp/scope/TestCppScope.py
    lldb/test/API/lang/cpp/scope/main.cpp
    lldb/test/API/lang/cpp/signed_types/Makefile
    lldb/test/API/lang/cpp/signed_types/TestSignedTypes.py
    lldb/test/API/lang/cpp/signed_types/main.cpp
    lldb/test/API/lang/cpp/static_members/Makefile
    lldb/test/API/lang/cpp/static_members/TestCPPStaticMembers.py
    lldb/test/API/lang/cpp/static_members/main.cpp
    lldb/test/API/lang/cpp/static_methods/Makefile
    lldb/test/API/lang/cpp/static_methods/TestCPPStaticMethods.py
    lldb/test/API/lang/cpp/static_methods/main.cpp
    lldb/test/API/lang/cpp/std-function-step-into-callable/Makefile
    lldb/test/API/lang/cpp/std-function-step-into-callable/TestStdFunctionStepIntoCallable.py
    lldb/test/API/lang/cpp/std-function-step-into-callable/main.cpp
    lldb/test/API/lang/cpp/stl/Makefile
    lldb/test/API/lang/cpp/stl/TestSTL.py
    lldb/test/API/lang/cpp/stl/TestStdCXXDisassembly.py
    lldb/test/API/lang/cpp/stl/cmds.txt
    lldb/test/API/lang/cpp/stl/main.cpp
    lldb/test/API/lang/cpp/symbols/TestSymbols.py
    lldb/test/API/lang/cpp/symbols/main.cpp
    lldb/test/API/lang/cpp/template-function/Makefile
    lldb/test/API/lang/cpp/template-function/TestTemplateFunctions.py
    lldb/test/API/lang/cpp/template-function/main.cpp
    lldb/test/API/lang/cpp/template/Makefile
    lldb/test/API/lang/cpp/template/TestTemplateArgs.py
    lldb/test/API/lang/cpp/template/main.cpp
    lldb/test/API/lang/cpp/this/Makefile
    lldb/test/API/lang/cpp/this/TestCPPThis.py
    lldb/test/API/lang/cpp/this/main.cpp
    lldb/test/API/lang/cpp/thread_local/Makefile
    lldb/test/API/lang/cpp/thread_local/TestThreadLocal.py
    lldb/test/API/lang/cpp/thread_local/main.cpp
    lldb/test/API/lang/cpp/trivial_abi/Makefile
    lldb/test/API/lang/cpp/trivial_abi/TestTrivialABI.py
    lldb/test/API/lang/cpp/trivial_abi/main.cpp
    lldb/test/API/lang/cpp/type_lookup/Makefile
    lldb/test/API/lang/cpp/type_lookup/TestCppTypeLookup.py
    lldb/test/API/lang/cpp/type_lookup/main.cpp
    lldb/test/API/lang/cpp/unicode-literals/Makefile
    lldb/test/API/lang/cpp/unicode-literals/TestUnicodeLiterals.py
    lldb/test/API/lang/cpp/unicode-literals/main.cpp
    lldb/test/API/lang/cpp/unique-types/Makefile
    lldb/test/API/lang/cpp/unique-types/TestUniqueTypes.py
    lldb/test/API/lang/cpp/unique-types/main.cpp
    lldb/test/API/lang/cpp/unsigned_types/Makefile
    lldb/test/API/lang/cpp/unsigned_types/TestUnsignedTypes.py
    lldb/test/API/lang/cpp/unsigned_types/main.cpp
    lldb/test/API/lang/cpp/virtual-functions/Makefile
    lldb/test/API/lang/cpp/virtual-functions/TestCppVirtualFunctions.py
    lldb/test/API/lang/cpp/virtual-functions/main.cpp
    lldb/test/API/lang/cpp/virtual-overload/TestVirtualOverload.py
    lldb/test/API/lang/cpp/virtual-overload/main.cpp
    lldb/test/API/lang/cpp/wchar_t/.categories
    lldb/test/API/lang/cpp/wchar_t/Makefile
    lldb/test/API/lang/cpp/wchar_t/TestCxxWCharT.py
    lldb/test/API/lang/cpp/wchar_t/main.cpp
    lldb/test/API/lang/mixed/Makefile
    lldb/test/API/lang/mixed/TestMixedLanguages.py
    lldb/test/API/lang/mixed/foo.cpp
    lldb/test/API/lang/mixed/main.c
    lldb/test/API/lang/objc/.categories
    lldb/test/API/lang/objc/bitfield_ivars/TestBitfieldIvars.py
    lldb/test/API/lang/objc/bitfield_ivars/main.m
    lldb/test/API/lang/objc/blocks/Makefile
    lldb/test/API/lang/objc/blocks/TestObjCIvarsInBlocks.py
    lldb/test/API/lang/objc/blocks/ivars-in-blocks.h
    lldb/test/API/lang/objc/blocks/ivars-in-blocks.m
    lldb/test/API/lang/objc/blocks/main.m
    lldb/test/API/lang/objc/conflicting-definition/Makefile
    lldb/test/API/lang/objc/conflicting-definition/Test/Foo.h
    lldb/test/API/lang/objc/conflicting-definition/Test/Test.h
    lldb/test/API/lang/objc/conflicting-definition/Test/Test.m
    lldb/test/API/lang/objc/conflicting-definition/TestConflictingDefinition.py
    lldb/test/API/lang/objc/conflicting-definition/TestExt/Foo.h
    lldb/test/API/lang/objc/conflicting-definition/TestExt/TestExt.h
    lldb/test/API/lang/objc/conflicting-definition/TestExt/TestExt.m
    lldb/test/API/lang/objc/conflicting-definition/main.m
    lldb/test/API/lang/objc/direct-dispatch-step/Makefile
    lldb/test/API/lang/objc/direct-dispatch-step/TestObjCDirectDispatchStepping.py
    lldb/test/API/lang/objc/direct-dispatch-step/stepping-tests.m
    lldb/test/API/lang/objc/exceptions/Makefile
    lldb/test/API/lang/objc/exceptions/TestObjCExceptions.py
    lldb/test/API/lang/objc/exceptions/main.mm
    lldb/test/API/lang/objc/forward-decl/Container.h
    lldb/test/API/lang/objc/forward-decl/Container.m
    lldb/test/API/lang/objc/forward-decl/Makefile
    lldb/test/API/lang/objc/forward-decl/TestForwardDecl.py
    lldb/test/API/lang/objc/forward-decl/main.m
    lldb/test/API/lang/objc/foundation/Makefile
    lldb/test/API/lang/objc/foundation/TestConstStrings.py
    lldb/test/API/lang/objc/foundation/TestFoundationDisassembly.py
    lldb/test/API/lang/objc/foundation/TestObjCMethods.py
    lldb/test/API/lang/objc/foundation/TestObjCMethods2.py
    lldb/test/API/lang/objc/foundation/TestObjCMethodsNSArray.py
    lldb/test/API/lang/objc/foundation/TestObjCMethodsNSError.py
    lldb/test/API/lang/objc/foundation/TestObjCMethodsString.py
    lldb/test/API/lang/objc/foundation/TestObjectDescriptionAPI.py
    lldb/test/API/lang/objc/foundation/TestRuntimeTypes.py
    lldb/test/API/lang/objc/foundation/TestSymbolTable.py
    lldb/test/API/lang/objc/foundation/const-strings.m
    lldb/test/API/lang/objc/foundation/main.m
    lldb/test/API/lang/objc/foundation/my-base.h
    lldb/test/API/lang/objc/foundation/my-base.m
    lldb/test/API/lang/objc/global_ptrs/Makefile
    lldb/test/API/lang/objc/global_ptrs/TestGlobalObjects.py
    lldb/test/API/lang/objc/global_ptrs/main.m
    lldb/test/API/lang/objc/hidden-ivars/InternalDefiner.h
    lldb/test/API/lang/objc/hidden-ivars/InternalDefiner.m
    lldb/test/API/lang/objc/hidden-ivars/Makefile
    lldb/test/API/lang/objc/hidden-ivars/TestHiddenIvars.py
    lldb/test/API/lang/objc/hidden-ivars/main.m
    lldb/test/API/lang/objc/ivar-IMP/Makefile
    lldb/test/API/lang/objc/ivar-IMP/TestObjCiVarIMP.py
    lldb/test/API/lang/objc/ivar-IMP/myclass.h
    lldb/test/API/lang/objc/ivar-IMP/myclass.m
    lldb/test/API/lang/objc/ivar-IMP/repro.m
    lldb/test/API/lang/objc/modules-app-update/Makefile
    lldb/test/API/lang/objc/modules-app-update/TestClangModulesAppUpdate.py
    lldb/test/API/lang/objc/modules-app-update/foo.m
    lldb/test/API/lang/objc/modules-app-update/main.m
    lldb/test/API/lang/objc/modules-app-update/module.modulemap
    lldb/test/API/lang/objc/modules-app-update/umbrella.h
    lldb/test/API/lang/objc/modules-auto-import/Makefile
    lldb/test/API/lang/objc/modules-auto-import/TestModulesAutoImport.py
    lldb/test/API/lang/objc/modules-auto-import/main.m
    lldb/test/API/lang/objc/modules-cache/Makefile
    lldb/test/API/lang/objc/modules-cache/TestClangModulesCache.py
    lldb/test/API/lang/objc/modules-cache/f.h
    lldb/test/API/lang/objc/modules-cache/main.m
    lldb/test/API/lang/objc/modules-cache/module.modulemap
    lldb/test/API/lang/objc/modules-hash-mismatch/Makefile
    lldb/test/API/lang/objc/modules-hash-mismatch/TestClangModulesHashMismatch.py
    lldb/test/API/lang/objc/modules-hash-mismatch/main.m
    lldb/test/API/lang/objc/modules-hash-mismatch/other.m
    lldb/test/API/lang/objc/modules-incomplete/Makefile
    lldb/test/API/lang/objc/modules-incomplete/TestIncompleteModules.py
    lldb/test/API/lang/objc/modules-incomplete/main.m
    lldb/test/API/lang/objc/modules-incomplete/minmax.h
    lldb/test/API/lang/objc/modules-incomplete/module.map
    lldb/test/API/lang/objc/modules-incomplete/myModule.h
    lldb/test/API/lang/objc/modules-incomplete/myModule.m
    lldb/test/API/lang/objc/modules-inline-functions/Makefile
    lldb/test/API/lang/objc/modules-inline-functions/TestModulesInlineFunctions.py
    lldb/test/API/lang/objc/modules-inline-functions/main.m
    lldb/test/API/lang/objc/modules-inline-functions/module.map
    lldb/test/API/lang/objc/modules-inline-functions/myModule.c
    lldb/test/API/lang/objc/modules-inline-functions/myModule.h
    lldb/test/API/lang/objc/modules-update/Makefile
    lldb/test/API/lang/objc/modules-update/TestClangModulesUpdate.py
    lldb/test/API/lang/objc/modules-update/first.m
    lldb/test/API/lang/objc/modules-update/module.modulemap
    lldb/test/API/lang/objc/modules-update/second.m
    lldb/test/API/lang/objc/modules-update/umbrella.h
    lldb/test/API/lang/objc/modules/Makefile
    lldb/test/API/lang/objc/modules/TestObjCModules.py
    lldb/test/API/lang/objc/modules/main.m
    lldb/test/API/lang/objc/objc++/Makefile
    lldb/test/API/lang/objc/objc++/TestObjCXX.py
    lldb/test/API/lang/objc/objc++/main.mm
    lldb/test/API/lang/objc/objc-baseclass-sbtype/Makefile
    lldb/test/API/lang/objc/objc-baseclass-sbtype/TestObjCBaseClassSBType.py
    lldb/test/API/lang/objc/objc-baseclass-sbtype/main.m
    lldb/test/API/lang/objc/objc-builtin-types/Makefile
    lldb/test/API/lang/objc/objc-builtin-types/TestObjCBuiltinTypes.py
    lldb/test/API/lang/objc/objc-builtin-types/main.cpp
    lldb/test/API/lang/objc/objc-checker/Makefile
    lldb/test/API/lang/objc/objc-checker/TestObjCCheckers.py
    lldb/test/API/lang/objc/objc-checker/main.m
    lldb/test/API/lang/objc/objc-class-method/Makefile
    lldb/test/API/lang/objc/objc-class-method/TestObjCClassMethod.py
    lldb/test/API/lang/objc/objc-class-method/class.m
    lldb/test/API/lang/objc/objc-dyn-sbtype/.categories
    lldb/test/API/lang/objc/objc-dyn-sbtype/Makefile
    lldb/test/API/lang/objc/objc-dyn-sbtype/TestObjCDynamicSBType.py
    lldb/test/API/lang/objc/objc-dyn-sbtype/main.m
    lldb/test/API/lang/objc/objc-dynamic-value/Makefile
    lldb/test/API/lang/objc/objc-dynamic-value/TestObjCDynamicValue.py
    lldb/test/API/lang/objc/objc-dynamic-value/dynamic-value.m
    lldb/test/API/lang/objc/objc-foundation-dictionary-empty/TestNSDictionary0.py
    lldb/test/API/lang/objc/objc-foundation-dictionary-empty/main.m
    lldb/test/API/lang/objc/objc-ivar-offsets/Makefile
    lldb/test/API/lang/objc/objc-ivar-offsets/TestObjCIvarOffsets.py
    lldb/test/API/lang/objc/objc-ivar-offsets/main.m
    lldb/test/API/lang/objc/objc-ivar-offsets/objc-ivar-offsets.h
    lldb/test/API/lang/objc/objc-ivar-offsets/objc-ivar-offsets.m
    lldb/test/API/lang/objc/objc-ivar-protocols/TestIvarProtocols.py
    lldb/test/API/lang/objc/objc-ivar-protocols/main.m
    lldb/test/API/lang/objc/objc-ivar-stripped/Makefile
    lldb/test/API/lang/objc/objc-ivar-stripped/TestObjCIvarStripped.py
    lldb/test/API/lang/objc/objc-ivar-stripped/main.m
    lldb/test/API/lang/objc/objc-new-syntax/Makefile
    lldb/test/API/lang/objc/objc-new-syntax/ObjCNewSyntaxTest.py
    lldb/test/API/lang/objc/objc-new-syntax/TestObjCNewSyntaxArray.py
    lldb/test/API/lang/objc/objc-new-syntax/TestObjCNewSyntaxDictionary.py
    lldb/test/API/lang/objc/objc-new-syntax/TestObjCNewSyntaxLiteral.py
    lldb/test/API/lang/objc/objc-new-syntax/main.m
    lldb/test/API/lang/objc/objc-optimized/Makefile
    lldb/test/API/lang/objc/objc-optimized/TestObjcOptimized.py
    lldb/test/API/lang/objc/objc-optimized/main.m
    lldb/test/API/lang/objc/objc-property/Makefile
    lldb/test/API/lang/objc/objc-property/TestObjCProperty.py
    lldb/test/API/lang/objc/objc-property/main.m
    lldb/test/API/lang/objc/objc-runtime-ivars/Makefile
    lldb/test/API/lang/objc/objc-runtime-ivars/TestRuntimeIvars.py
    lldb/test/API/lang/objc/objc-runtime-ivars/main.m
    lldb/test/API/lang/objc/objc-static-method-stripped/Makefile
    lldb/test/API/lang/objc/objc-static-method-stripped/TestObjCStaticMethodStripped.py
    lldb/test/API/lang/objc/objc-static-method-stripped/static.m
    lldb/test/API/lang/objc/objc-static-method/Makefile
    lldb/test/API/lang/objc/objc-static-method/TestObjCStaticMethod.py
    lldb/test/API/lang/objc/objc-static-method/static.m
    lldb/test/API/lang/objc/objc-stepping/Makefile
    lldb/test/API/lang/objc/objc-stepping/TestObjCStepping.py
    lldb/test/API/lang/objc/objc-stepping/stepping-tests.m
    lldb/test/API/lang/objc/objc-struct-argument/Makefile
    lldb/test/API/lang/objc/objc-struct-argument/TestObjCStructArgument.py
    lldb/test/API/lang/objc/objc-struct-argument/test.m
    lldb/test/API/lang/objc/objc-struct-return/Makefile
    lldb/test/API/lang/objc/objc-struct-return/TestObjCStructReturn.py
    lldb/test/API/lang/objc/objc-struct-return/test.m
    lldb/test/API/lang/objc/objc-super/Makefile
    lldb/test/API/lang/objc/objc-super/TestObjCSuper.py
    lldb/test/API/lang/objc/objc-super/class.m
    lldb/test/API/lang/objc/objc_direct-methods/Makefile
    lldb/test/API/lang/objc/objc_direct-methods/TestObjCDirectMethods.py
    lldb/test/API/lang/objc/objc_direct-methods/main.m
    lldb/test/API/lang/objc/orderedset/Makefile
    lldb/test/API/lang/objc/orderedset/TestOrderedSet.py
    lldb/test/API/lang/objc/orderedset/main.m
    lldb/test/API/lang/objc/print-obj/Makefile
    lldb/test/API/lang/objc/print-obj/TestPrintObj.py
    lldb/test/API/lang/objc/print-obj/blocked.m
    lldb/test/API/lang/objc/ptr_refs/Makefile
    lldb/test/API/lang/objc/ptr_refs/TestPtrRefsObjC.py
    lldb/test/API/lang/objc/ptr_refs/main.m
    lldb/test/API/lang/objc/radar-9691614/Makefile
    lldb/test/API/lang/objc/radar-9691614/TestObjCMethodReturningBOOL.py
    lldb/test/API/lang/objc/radar-9691614/main.m
    lldb/test/API/lang/objc/rdar-10967107/Makefile
    lldb/test/API/lang/objc/rdar-10967107/TestRdar10967107.py
    lldb/test/API/lang/objc/rdar-10967107/main.m
    lldb/test/API/lang/objc/rdar-11355592/Makefile
    lldb/test/API/lang/objc/rdar-11355592/TestRdar11355592.py
    lldb/test/API/lang/objc/rdar-11355592/main.m
    lldb/test/API/lang/objc/rdar-12408181/Makefile
    lldb/test/API/lang/objc/rdar-12408181/TestRdar12408181.py
    lldb/test/API/lang/objc/rdar-12408181/main.m
    lldb/test/API/lang/objc/real-definition/Bar.h
    lldb/test/API/lang/objc/real-definition/Bar.m
    lldb/test/API/lang/objc/real-definition/Foo.h
    lldb/test/API/lang/objc/real-definition/Foo.m
    lldb/test/API/lang/objc/real-definition/Makefile
    lldb/test/API/lang/objc/real-definition/TestRealDefinition.py
    lldb/test/API/lang/objc/real-definition/main.m
    lldb/test/API/lang/objc/sample/Makefile
    lldb/test/API/lang/objc/sample/main.m
    lldb/test/API/lang/objc/self/Makefile
    lldb/test/API/lang/objc/self/TestObjCSelf.py
    lldb/test/API/lang/objc/self/main.m
    lldb/test/API/lang/objc/single-entry-dictionary/Makefile
    lldb/test/API/lang/objc/single-entry-dictionary/TestObjCSingleEntryDictionary.py
    lldb/test/API/lang/objc/single-entry-dictionary/main.m
    lldb/test/API/lang/objc/unicode-string/TestUnicodeString.py
    lldb/test/API/lang/objc/unicode-string/main.m
    lldb/test/API/lang/objc/variadic_methods/TestVariadicMethods.py
    lldb/test/API/lang/objc/variadic_methods/main.m
    lldb/test/API/lang/objcxx/class-name-clash/Makefile
    lldb/test/API/lang/objcxx/class-name-clash/TestNameClash.py
    lldb/test/API/lang/objcxx/class-name-clash/main.mm
    lldb/test/API/lang/objcxx/class-name-clash/myobject.mm
    lldb/test/API/lang/objcxx/cxx-bridged-po/Makefile
    lldb/test/API/lang/objcxx/cxx-bridged-po/TestObjCXXBridgedPO.py
    lldb/test/API/lang/objcxx/cxx-bridged-po/main.mm
    lldb/test/API/lang/objcxx/hide-runtime-values/Makefile
    lldb/test/API/lang/objcxx/hide-runtime-values/TestObjCXXHideRuntimeValues.py
    lldb/test/API/lang/objcxx/hide-runtime-values/main.mm
    lldb/test/API/lang/objcxx/objcxx-ivar-vector/TestIvarVector.py
    lldb/test/API/lang/objcxx/objcxx-ivar-vector/main.mm
    lldb/test/API/lang/objcxx/sample/Makefile
    lldb/test/API/lang/objcxx/sample/main.mm
    lldb/test/API/linux/add-symbols/Makefile
    lldb/test/API/linux/add-symbols/TestTargetSymbolsAddCommand.py
    lldb/test/API/linux/add-symbols/main.c
    lldb/test/API/linux/builtin_trap/Makefile
    lldb/test/API/linux/builtin_trap/TestBuiltinTrap.py
    lldb/test/API/linux/builtin_trap/main.cpp
    lldb/test/API/linux/mix-dwo-and-regular-objects/Makefile
    lldb/test/API/linux/mix-dwo-and-regular-objects/TestMixedDwarfBinary.py
    lldb/test/API/linux/mix-dwo-and-regular-objects/a.c
    lldb/test/API/linux/mix-dwo-and-regular-objects/b.c
    lldb/test/API/linux/sepdebugsymlink/Makefile
    lldb/test/API/linux/sepdebugsymlink/TestTargetSymbolsSepDebugSymlink.py
    lldb/test/API/linux/sepdebugsymlink/main.c
    lldb/test/API/linux/thread/create_during_instruction_step/Makefile
    lldb/test/API/linux/thread/create_during_instruction_step/TestCreateDuringInstructionStep.py
    lldb/test/API/linux/thread/create_during_instruction_step/main.cpp
    lldb/test/API/macosx/DBGSourcePathRemapping/Inputs/main.c
    lldb/test/API/macosx/DBGSourcePathRemapping/Inputs/relative.c
    lldb/test/API/macosx/DBGSourcePathRemapping/Makefile
    lldb/test/API/macosx/DBGSourcePathRemapping/TestDSYMSourcePathRemapping.py
    lldb/test/API/macosx/add-dsym/Makefile
    lldb/test/API/macosx/add-dsym/TestAddDsymMidExecutionCommand.py
    lldb/test/API/macosx/add-dsym/main.c
    lldb/test/API/macosx/duplicate-archive-members/Makefile
    lldb/test/API/macosx/duplicate-archive-members/TestDuplicateMembers.py
    lldb/test/API/macosx/duplicate-archive-members/a.c
    lldb/test/API/macosx/duplicate-archive-members/main.c
    lldb/test/API/macosx/duplicate-archive-members/sub1/a.c
    lldb/test/API/macosx/find-app-in-bundle/Makefile
    lldb/test/API/macosx/find-app-in-bundle/TestApp.app/Contents/Info.plist
    lldb/test/API/macosx/find-app-in-bundle/TestApp.app/Contents/MacOS/.empty
    lldb/test/API/macosx/find-app-in-bundle/TestApp.app/Contents/Resources/.empty
    lldb/test/API/macosx/find-app-in-bundle/TestFindAppInBundle.py
    lldb/test/API/macosx/find-app-in-bundle/main.c
    lldb/test/API/macosx/find-dsym/bundle-with-dot-in-filename/Makefile
    lldb/test/API/macosx/find-dsym/bundle-with-dot-in-filename/TestBundleWithDotInFilename.py
    lldb/test/API/macosx/find-dsym/bundle-with-dot-in-filename/bundle.c
    lldb/test/API/macosx/find-dsym/bundle-with-dot-in-filename/main.c
    lldb/test/API/macosx/find-dsym/deep-bundle/Info.plist
    lldb/test/API/macosx/find-dsym/deep-bundle/Makefile
    lldb/test/API/macosx/find-dsym/deep-bundle/MyFramework.h
    lldb/test/API/macosx/find-dsym/deep-bundle/TestDeepBundle.py
    lldb/test/API/macosx/find-dsym/deep-bundle/main.c
    lldb/test/API/macosx/find-dsym/deep-bundle/myframework.c
    lldb/test/API/macosx/function-starts/Makefile
    lldb/test/API/macosx/function-starts/TestFunctionStarts.py
    lldb/test/API/macosx/function-starts/main.cpp
    lldb/test/API/macosx/indirect_symbol/Makefile
    lldb/test/API/macosx/indirect_symbol/TestIndirectSymbols.py
    lldb/test/API/macosx/indirect_symbol/alias.list
    lldb/test/API/macosx/indirect_symbol/indirect.c
    lldb/test/API/macosx/indirect_symbol/main.c
    lldb/test/API/macosx/indirect_symbol/reexport.c
    lldb/test/API/macosx/lc-note/kern-ver-str/Makefile
    lldb/test/API/macosx/lc-note/kern-ver-str/TestKernVerStrLCNOTE.py
    lldb/test/API/macosx/lc-note/kern-ver-str/create-empty-corefile.cpp
    lldb/test/API/macosx/lc-note/kern-ver-str/main.c
    lldb/test/API/macosx/load-kext/TestLoadKext.py
    lldb/test/API/macosx/load-kext/mykext.yaml
    lldb/test/API/macosx/macabi/Makefile
    lldb/test/API/macosx/macabi/TestMacABImacOSFramework.py
    lldb/test/API/macosx/macabi/foo.c
    lldb/test/API/macosx/macabi/foo.h
    lldb/test/API/macosx/macabi/main.c
    lldb/test/API/macosx/nslog/Makefile
    lldb/test/API/macosx/nslog/TestDarwinNSLogOutput.py
    lldb/test/API/macosx/nslog/main.m
    lldb/test/API/macosx/order/Makefile
    lldb/test/API/macosx/order/TestOrderFile.py
    lldb/test/API/macosx/order/cmds.txt
    lldb/test/API/macosx/order/main.c
    lldb/test/API/macosx/order/order-file
    lldb/test/API/macosx/queues/Makefile
    lldb/test/API/macosx/queues/TestQueues.py
    lldb/test/API/macosx/queues/main.c
    lldb/test/API/macosx/safe-to-func-call/Makefile
    lldb/test/API/macosx/safe-to-func-call/TestSafeFuncCalls.py
    lldb/test/API/macosx/safe-to-func-call/main.c
    lldb/test/API/macosx/thread-names/Makefile
    lldb/test/API/macosx/thread-names/TestInterruptThreadNames.py
    lldb/test/API/macosx/thread-names/main.c
    lldb/test/API/macosx/universal/Makefile
    lldb/test/API/macosx/universal/TestUniversal.py
    lldb/test/API/macosx/universal/main.c
    lldb/test/API/macosx/version_zero/TestGetVersionZeroVersion.py
    lldb/test/API/macosx/version_zero/libDylib.dylib.yaml
    lldb/test/API/python_api/.categories
    lldb/test/API/python_api/breakpoint/Makefile
    lldb/test/API/python_api/breakpoint/TestBreakpointAPI.py
    lldb/test/API/python_api/breakpoint/main.c
    lldb/test/API/python_api/class_members/Makefile
    lldb/test/API/python_api/class_members/TestSBTypeClassMembers.py
    lldb/test/API/python_api/class_members/main.mm
    lldb/test/API/python_api/debugger/TestDebuggerAPI.py
    lldb/test/API/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py
    lldb/test/API/python_api/default-constructor/sb_address.py
    lldb/test/API/python_api/default-constructor/sb_block.py
    lldb/test/API/python_api/default-constructor/sb_breakpoint.py
    lldb/test/API/python_api/default-constructor/sb_breakpointlocation.py
    lldb/test/API/python_api/default-constructor/sb_breakpointname.py
    lldb/test/API/python_api/default-constructor/sb_broadcaster.py
    lldb/test/API/python_api/default-constructor/sb_communication.py
    lldb/test/API/python_api/default-constructor/sb_compileunit.py
    lldb/test/API/python_api/default-constructor/sb_debugger.py
    lldb/test/API/python_api/default-constructor/sb_error.py
    lldb/test/API/python_api/default-constructor/sb_event.py
    lldb/test/API/python_api/default-constructor/sb_filespec.py
    lldb/test/API/python_api/default-constructor/sb_frame.py
    lldb/test/API/python_api/default-constructor/sb_function.py
    lldb/test/API/python_api/default-constructor/sb_instruction.py
    lldb/test/API/python_api/default-constructor/sb_instructionlist.py
    lldb/test/API/python_api/default-constructor/sb_lineentry.py
    lldb/test/API/python_api/default-constructor/sb_listener.py
    lldb/test/API/python_api/default-constructor/sb_module.py
    lldb/test/API/python_api/default-constructor/sb_process.py
    lldb/test/API/python_api/default-constructor/sb_process_info.py
    lldb/test/API/python_api/default-constructor/sb_section.py
    lldb/test/API/python_api/default-constructor/sb_stringlist.py
    lldb/test/API/python_api/default-constructor/sb_symbol.py
    lldb/test/API/python_api/default-constructor/sb_symbolcontext.py
    lldb/test/API/python_api/default-constructor/sb_target.py
    lldb/test/API/python_api/default-constructor/sb_thread.py
    lldb/test/API/python_api/default-constructor/sb_type.py
    lldb/test/API/python_api/default-constructor/sb_value.py
    lldb/test/API/python_api/default-constructor/sb_valuelist.py
    lldb/test/API/python_api/default-constructor/sb_watchpoint.py
    lldb/test/API/python_api/disassemble-raw-data/TestDisassembleRawData.py
    lldb/test/API/python_api/disassemble-raw-data/TestDisassemble_VST1_64.py
    lldb/test/API/python_api/event/Makefile
    lldb/test/API/python_api/event/TestEvents.py
    lldb/test/API/python_api/event/main.c
    lldb/test/API/python_api/exprpath_synthetic/TestExprPathSynthetic.py
    lldb/test/API/python_api/exprpath_synthetic/main.mm
    lldb/test/API/python_api/file_handle/TestFileHandle.py
    lldb/test/API/python_api/findvalue_duplist/Makefile
    lldb/test/API/python_api/findvalue_duplist/TestSBFrameFindValue.py
    lldb/test/API/python_api/findvalue_duplist/main.cpp
    lldb/test/API/python_api/formatters/Makefile
    lldb/test/API/python_api/formatters/TestFormattersSBAPI.py
    lldb/test/API/python_api/formatters/main.cpp
    lldb/test/API/python_api/formatters/synth.py
    lldb/test/API/python_api/frame/Makefile
    lldb/test/API/python_api/frame/TestFrames.py
    lldb/test/API/python_api/frame/get-variables/Makefile
    lldb/test/API/python_api/frame/get-variables/TestGetVariables.py
    lldb/test/API/python_api/frame/get-variables/main.c
    lldb/test/API/python_api/frame/inlines/Makefile
    lldb/test/API/python_api/frame/inlines/TestInlinedFrame.py
    lldb/test/API/python_api/frame/inlines/inlines.c
    lldb/test/API/python_api/frame/inlines/inlines.h
    lldb/test/API/python_api/frame/main.c
    lldb/test/API/python_api/function_symbol/Makefile
    lldb/test/API/python_api/function_symbol/TestDisasmAPI.py
    lldb/test/API/python_api/function_symbol/TestSymbolAPI.py
    lldb/test/API/python_api/function_symbol/main.c
    lldb/test/API/python_api/get-value-32bit-int/Makefile
    lldb/test/API/python_api/get-value-32bit-int/TestGetValue32BitInt.py
    lldb/test/API/python_api/get-value-32bit-int/main.cpp
    lldb/test/API/python_api/hello_world/Makefile
    lldb/test/API/python_api/hello_world/TestHelloWorld.py
    lldb/test/API/python_api/hello_world/main.c
    lldb/test/API/python_api/interpreter/Makefile
    lldb/test/API/python_api/interpreter/TestCommandInterpreterAPI.py
    lldb/test/API/python_api/interpreter/TestRunCommandInterpreterAPI.py
    lldb/test/API/python_api/interpreter/main.c
    lldb/test/API/python_api/lldbutil/TestSwigVersion.py
    lldb/test/API/python_api/lldbutil/frame/Makefile
    lldb/test/API/python_api/lldbutil/frame/TestFrameUtils.py
    lldb/test/API/python_api/lldbutil/frame/main.c
    lldb/test/API/python_api/lldbutil/iter/Makefile
    lldb/test/API/python_api/lldbutil/iter/TestLLDBIterator.py
    lldb/test/API/python_api/lldbutil/iter/TestRegistersIterator.py
    lldb/test/API/python_api/lldbutil/iter/main.cpp
    lldb/test/API/python_api/lldbutil/process/Makefile
    lldb/test/API/python_api/lldbutil/process/TestPrintStackTraces.py
    lldb/test/API/python_api/lldbutil/process/main.cpp
    lldb/test/API/python_api/module_section/Makefile
    lldb/test/API/python_api/module_section/TestModuleAndSection.py
    lldb/test/API/python_api/module_section/b.cpp
    lldb/test/API/python_api/module_section/c.cpp
    lldb/test/API/python_api/module_section/main.cpp
    lldb/test/API/python_api/name_lookup/Makefile
    lldb/test/API/python_api/name_lookup/TestNameLookup.py
    lldb/test/API/python_api/name_lookup/main.cpp
    lldb/test/API/python_api/objc_type/Makefile
    lldb/test/API/python_api/objc_type/TestObjCType.py
    lldb/test/API/python_api/objc_type/main.m
    lldb/test/API/python_api/process/Makefile
    lldb/test/API/python_api/process/TestProcessAPI.py
    lldb/test/API/python_api/process/io/Makefile
    lldb/test/API/python_api/process/io/TestProcessIO.py
    lldb/test/API/python_api/process/io/main.c
    lldb/test/API/python_api/process/main.cpp
    lldb/test/API/python_api/process/read-mem-cstring/Makefile
    lldb/test/API/python_api/process/read-mem-cstring/TestReadMemCString.py
    lldb/test/API/python_api/process/read-mem-cstring/main.c
    lldb/test/API/python_api/sbdata/Makefile
    lldb/test/API/python_api/sbdata/TestSBData.py
    lldb/test/API/python_api/sbdata/main.cpp
    lldb/test/API/python_api/sblaunchinfo/TestSBLaunchInfo.py
    lldb/test/API/python_api/sbstructureddata/TestStructuredDataAPI.py
    lldb/test/API/python_api/sbtype_typeclass/TestSBTypeTypeClass.py
    lldb/test/API/python_api/sbtype_typeclass/main.m
    lldb/test/API/python_api/sbvalue_const_addrof/TestSBValueConstAddrOf.py
    lldb/test/API/python_api/sbvalue_const_addrof/main.cpp
    lldb/test/API/python_api/sbvalue_persist/Makefile
    lldb/test/API/python_api/sbvalue_persist/TestSBValuePersist.py
    lldb/test/API/python_api/sbvalue_persist/main.cpp
    lldb/test/API/python_api/section/Makefile
    lldb/test/API/python_api/section/TestSectionAPI.py
    lldb/test/API/python_api/section/main.c
    lldb/test/API/python_api/signals/Makefile
    lldb/test/API/python_api/signals/TestSignalsAPI.py
    lldb/test/API/python_api/signals/main.cpp
    lldb/test/API/python_api/symbol-context/Makefile
    lldb/test/API/python_api/symbol-context/TestSymbolContext.py
    lldb/test/API/python_api/symbol-context/main.c
    lldb/test/API/python_api/symbol-context/two-files/Makefile
    lldb/test/API/python_api/symbol-context/two-files/TestSymbolContextTwoFiles.py
    lldb/test/API/python_api/symbol-context/two-files/decls.h
    lldb/test/API/python_api/symbol-context/two-files/file1.cpp
    lldb/test/API/python_api/symbol-context/two-files/file2.cpp
    lldb/test/API/python_api/target/Makefile
    lldb/test/API/python_api/target/TestTargetAPI.py
    lldb/test/API/python_api/target/main.c
    lldb/test/API/python_api/thread/Makefile
    lldb/test/API/python_api/thread/TestThreadAPI.py
    lldb/test/API/python_api/thread/main.cpp
    lldb/test/API/python_api/thread/main2.cpp
    lldb/test/API/python_api/type/Makefile
    lldb/test/API/python_api/type/TestTypeList.py
    lldb/test/API/python_api/type/main.cpp
    lldb/test/API/python_api/value/Makefile
    lldb/test/API/python_api/value/TestValueAPI.py
    lldb/test/API/python_api/value/change_values/Makefile
    lldb/test/API/python_api/value/change_values/TestChangeValueAPI.py
    lldb/test/API/python_api/value/change_values/main.c
    lldb/test/API/python_api/value/empty_class/Makefile
    lldb/test/API/python_api/value/empty_class/TestValueAPIEmptyClass.py
    lldb/test/API/python_api/value/empty_class/main.cpp
    lldb/test/API/python_api/value/linked_list/Makefile
    lldb/test/API/python_api/value/linked_list/TestValueAPILinkedList.py
    lldb/test/API/python_api/value/linked_list/main.cpp
    lldb/test/API/python_api/value/main.c
    lldb/test/API/python_api/value_var_update/Makefile
    lldb/test/API/python_api/value_var_update/TestValueVarUpdate.py
    lldb/test/API/python_api/value_var_update/main.c
    lldb/test/API/python_api/watchpoint/.categories
    lldb/test/API/python_api/watchpoint/Makefile
    lldb/test/API/python_api/watchpoint/TestSetWatchpoint.py
    lldb/test/API/python_api/watchpoint/TestWatchpointIgnoreCount.py
    lldb/test/API/python_api/watchpoint/TestWatchpointIter.py
    lldb/test/API/python_api/watchpoint/condition/Makefile
    lldb/test/API/python_api/watchpoint/condition/TestWatchpointConditionAPI.py
    lldb/test/API/python_api/watchpoint/condition/main.cpp
    lldb/test/API/python_api/watchpoint/main.c
    lldb/test/API/python_api/watchpoint/watchlocation/Makefile
    lldb/test/API/python_api/watchpoint/watchlocation/TestSetWatchlocation.py
    lldb/test/API/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py
    lldb/test/API/python_api/watchpoint/watchlocation/main.cpp
    lldb/test/API/sample_test/Makefile
    lldb/test/API/sample_test/TestSampleInlineTest.py
    lldb/test/API/sample_test/TestSampleTest.py
    lldb/test/API/sample_test/main.c
    lldb/test/API/sanity/TestModuleCacheSanity.py
    lldb/test/API/source-manager/Makefile
    lldb/test/API/source-manager/TestSourceManager.py
    lldb/test/API/source-manager/hidden/.keep
    lldb/test/API/source-manager/main.c
    lldb/test/API/terminal/TestEditline.py
    lldb/test/API/terminal/TestSTTYBeforeAndAfter.py
    lldb/test/API/test_runner/test/__init__.py
    lldb/test/API/test_runner/test/inferior.py
    lldb/test/API/test_runner/test/test_process_control.py
    lldb/test/API/tools/lldb-server/.clang-format
    lldb/test/API/tools/lldb-server/Makefile
    lldb/test/API/tools/lldb-server/TestAppleSimulatorOSType.py
    lldb/test/API/tools/lldb-server/TestGdbRemoteAttach.py
    lldb/test/API/tools/lldb-server/TestGdbRemoteAuxvSupport.py
    lldb/test/API/tools/lldb-server/TestGdbRemoteExitCode.py
    lldb/test/API/tools/lldb-server/TestGdbRemoteExpeditedRegisters.py
    lldb/test/API/tools/lldb-server/TestGdbRemoteHostInfo.py
    lldb/test/API/tools/lldb-server/TestGdbRemoteKill.py
    lldb/test/API/tools/lldb-server/TestGdbRemoteModuleInfo.py
    lldb/test/API/tools/lldb-server/TestGdbRemoteProcessInfo.py
    lldb/test/API/tools/lldb-server/TestGdbRemoteRegisterState.py
    lldb/test/API/tools/lldb-server/TestGdbRemoteSingleStep.py
    lldb/test/API/tools/lldb-server/TestGdbRemoteThreadsInStopReply.py
    lldb/test/API/tools/lldb-server/TestGdbRemote_qThreadStopInfo.py
    lldb/test/API/tools/lldb-server/TestGdbRemote_vCont.py
    lldb/test/API/tools/lldb-server/TestGdbRemote_vContThreads.py
    lldb/test/API/tools/lldb-server/TestLldbGdbServer.py
    lldb/test/API/tools/lldb-server/commandline/TestStubReverseConnect.py
    lldb/test/API/tools/lldb-server/commandline/TestStubSetSID.py
    lldb/test/API/tools/lldb-server/inferior-crash/Makefile
    lldb/test/API/tools/lldb-server/inferior-crash/TestGdbRemoteAbort.py
    lldb/test/API/tools/lldb-server/inferior-crash/TestGdbRemoteSegFault.py
    lldb/test/API/tools/lldb-server/inferior-crash/main.cpp
    lldb/test/API/tools/lldb-server/libraries-svr4/Makefile
    lldb/test/API/tools/lldb-server/libraries-svr4/TestGdbRemoteLibrariesSvr4Support.py
    lldb/test/API/tools/lldb-server/libraries-svr4/main.cpp
    lldb/test/API/tools/lldb-server/libraries-svr4/svr4lib_a.cpp
    lldb/test/API/tools/lldb-server/libraries-svr4/svr4lib_b_quote.cpp
    lldb/test/API/tools/lldb-server/main.cpp
    lldb/test/API/tools/lldb-server/platform-process-connect/Makefile
    lldb/test/API/tools/lldb-server/platform-process-connect/TestPlatformProcessConnect.py
    lldb/test/API/tools/lldb-server/platform-process-connect/main.cpp
    lldb/test/API/tools/lldb-server/register-reading/Makefile
    lldb/test/API/tools/lldb-server/register-reading/TestGdbRemoteGPacket.py
    lldb/test/API/tools/lldb-server/register-reading/main.cpp
    lldb/test/API/tools/lldb-server/signal-filtering/Makefile
    lldb/test/API/tools/lldb-server/signal-filtering/TestGdbRemote_QPassSignals.py
    lldb/test/API/tools/lldb-server/signal-filtering/main.cpp
    lldb/test/API/tools/lldb-server/test/test_lldbgdbserverutils.py
    lldb/test/API/tools/lldb-server/thread-name/Makefile
    lldb/test/API/tools/lldb-server/thread-name/TestGdbRemoteThreadName.py
    lldb/test/API/tools/lldb-server/thread-name/main.cpp
    lldb/test/API/tools/lldb-vscode/.categories
    lldb/test/API/tools/lldb-vscode/attach/Makefile
    lldb/test/API/tools/lldb-vscode/attach/TestVSCode_attach.py
    lldb/test/API/tools/lldb-vscode/attach/main.c
    lldb/test/API/tools/lldb-vscode/breakpoint/Makefile
    lldb/test/API/tools/lldb-vscode/breakpoint/TestVSCode_setBreakpoints.py
    lldb/test/API/tools/lldb-vscode/breakpoint/TestVSCode_setExceptionBreakpoints.py
    lldb/test/API/tools/lldb-vscode/breakpoint/TestVSCode_setFunctionBreakpoints.py
    lldb/test/API/tools/lldb-vscode/breakpoint/main.cpp
    lldb/test/API/tools/lldb-vscode/completions/Makefile
    lldb/test/API/tools/lldb-vscode/completions/TestVSCode_completions.py
    lldb/test/API/tools/lldb-vscode/completions/main.cpp
    lldb/test/API/tools/lldb-vscode/launch/Makefile
    lldb/test/API/tools/lldb-vscode/launch/TestVSCode_launch.py
    lldb/test/API/tools/lldb-vscode/launch/main.c
    lldb/test/API/tools/lldb-vscode/stackTrace/Makefile
    lldb/test/API/tools/lldb-vscode/stackTrace/TestVSCode_stackTrace.py
    lldb/test/API/tools/lldb-vscode/stackTrace/main.c
    lldb/test/API/tools/lldb-vscode/step/Makefile
    lldb/test/API/tools/lldb-vscode/step/TestVSCode_step.py
    lldb/test/API/tools/lldb-vscode/step/main.cpp
    lldb/test/API/tools/lldb-vscode/variables/Makefile
    lldb/test/API/tools/lldb-vscode/variables/TestVSCode_variables.py
    lldb/test/API/tools/lldb-vscode/variables/main.cpp
    lldb/test/API/types/AbstractBase.py
    lldb/test/API/types/HideTestFailures.py
    lldb/test/API/types/Makefile
    lldb/test/API/types/TestCharType.py
    lldb/test/API/types/TestCharTypeExpr.py
    lldb/test/API/types/TestDoubleTypes.py
    lldb/test/API/types/TestDoubleTypesExpr.py
    lldb/test/API/types/TestFloatTypes.py
    lldb/test/API/types/TestFloatTypesExpr.py
    lldb/test/API/types/TestIntegerType.py
    lldb/test/API/types/TestIntegerTypeExpr.py
    lldb/test/API/types/TestLongTypes.py
    lldb/test/API/types/TestLongTypesExpr.py
    lldb/test/API/types/TestRecursiveTypes.py
    lldb/test/API/types/TestShortType.py
    lldb/test/API/types/TestShortTypeExpr.py
    lldb/test/API/types/basic_type.cpp
    lldb/test/API/types/char.cpp
    lldb/test/API/types/double.cpp
    lldb/test/API/types/float.cpp
    lldb/test/API/types/int.cpp
    lldb/test/API/types/long.cpp
    lldb/test/API/types/long_long.cpp
    lldb/test/API/types/recursive_type_1.cpp
    lldb/test/API/types/recursive_type_2.cpp
    lldb/test/API/types/recursive_type_main.cpp
    lldb/test/API/types/short.cpp
    lldb/test/API/types/unsigned_char.cpp
    lldb/test/API/types/unsigned_int.cpp
    lldb/test/API/types/unsigned_long.cpp
    lldb/test/API/types/unsigned_long_long.cpp
    lldb/test/API/types/unsigned_short.cpp

Modified: 
    lldb/packages/Python/lldbsuite/__init__.py
    lldb/test/API/lit.cfg.py

Removed: 
    lldb/packages/Python/lldbsuite/test/android/platform/Makefile
    lldb/packages/Python/lldbsuite/test/android/platform/TestDefaultCacheLineSize.py
    lldb/packages/Python/lldbsuite/test/android/platform/main.cpp
    lldb/packages/Python/lldbsuite/test/api/check_public_api_headers/Makefile
    lldb/packages/Python/lldbsuite/test/api/check_public_api_headers/TestPublicAPIHeaders.py
    lldb/packages/Python/lldbsuite/test/api/check_public_api_headers/main.cpp.template
    lldb/packages/Python/lldbsuite/test/api/command-return-object/Makefile
    lldb/packages/Python/lldbsuite/test/api/command-return-object/TestSBCommandReturnObject.py
    lldb/packages/Python/lldbsuite/test/api/command-return-object/main.cpp
    lldb/packages/Python/lldbsuite/test/api/listeners/Makefile
    lldb/packages/Python/lldbsuite/test/api/listeners/TestListener.py
    lldb/packages/Python/lldbsuite/test/api/listeners/main.c
    lldb/packages/Python/lldbsuite/test/api/log/TestAPILog.py
    lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/.categories
    lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/Makefile
    lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/TestMultipleDebuggers.py
    lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/multi-process-driver.cpp
    lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/testprog.cpp
    lldb/packages/Python/lldbsuite/test/api/multiple-targets/Makefile
    lldb/packages/Python/lldbsuite/test/api/multiple-targets/TestMultipleTargets.py
    lldb/packages/Python/lldbsuite/test/api/multiple-targets/main.cpp
    lldb/packages/Python/lldbsuite/test/api/multithreaded/Makefile
    lldb/packages/Python/lldbsuite/test/api/multithreaded/TestMultithreaded.py
    lldb/packages/Python/lldbsuite/test/api/multithreaded/common.h
    lldb/packages/Python/lldbsuite/test/api/multithreaded/driver.cpp.template
    lldb/packages/Python/lldbsuite/test/api/multithreaded/inferior.cpp
    lldb/packages/Python/lldbsuite/test/api/multithreaded/listener_test.cpp.template
    lldb/packages/Python/lldbsuite/test/api/multithreaded/test_breakpoint_callback.cpp.template
    lldb/packages/Python/lldbsuite/test/api/multithreaded/test_listener_event_description.cpp.template
    lldb/packages/Python/lldbsuite/test/api/multithreaded/test_listener_event_process_state.cpp.template
    lldb/packages/Python/lldbsuite/test/api/multithreaded/test_listener_resume.cpp.template
    lldb/packages/Python/lldbsuite/test/arm/breakpoint-it/Makefile
    lldb/packages/Python/lldbsuite/test/arm/breakpoint-it/TestBreakpointIt.py
    lldb/packages/Python/lldbsuite/test/arm/breakpoint-it/main.c
    lldb/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/Makefile
    lldb/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/TestBreakpointThumbCodesection.py
    lldb/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/main.c
    lldb/packages/Python/lldbsuite/test/arm/emulation/TestEmulations.py
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-1-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-1-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-10-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-11-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-12-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-2-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-2-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-3-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-3-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-4-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-4-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-5-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-5-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-6-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-6-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-7-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-7-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-8-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-8-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-9-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-bic-1-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-bic-1-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-1-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-1-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-2-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-2-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-3-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-3-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-1-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-1-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-10-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-11-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-12-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-2-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-2-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-3-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-3-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-4-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-4-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-5-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-5-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-6-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-6-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-7-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-7-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-8-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-8-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-9-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrd-1-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrd-1-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrd-2-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrh-1-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrsh-1-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrsh-2-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-1-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-1-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-10-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-11-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-12-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-13-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-14-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-15-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-16-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-17-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-18-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-19-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-2-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-2-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-20-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-21-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-22-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-23-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-24-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-25-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-26-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-27-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-28-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-29-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-3-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-3-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-30-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-31-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-4-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-4-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-5-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-5-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-6-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-6-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-7-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-8-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-9-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-moveq-1-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-movs-1-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-1-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-1-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-2-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-2-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-3-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-3-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-4-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-4-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-pop-1-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-pop-1-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-pop-2-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-pop-2-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-pop-3-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-1-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-1-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-2-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-2-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-3-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-3-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-1-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-1-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-2-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-2-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-3-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-3-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-4-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-4-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-5-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-strb-1-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-strb-2-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-strbt-1-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-strd-1-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-strt-1-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-1-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-1-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-10-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-2-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-2-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-3-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-3-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-4-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-4-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-5-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-5-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-6-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-6-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-8-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-9-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-1-arm.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-1-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-10-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-2-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-3-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-4-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-5-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-6-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-8-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-9-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpop-1-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpop-2-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpop-3-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpush-1-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpush-2-thumb.dat
    lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpush-3-thumb.dat
    lldb/packages/Python/lldbsuite/test/benchmarks/continue/Makefile
    lldb/packages/Python/lldbsuite/test/benchmarks/continue/TestBenchmarkContinue.py
    lldb/packages/Python/lldbsuite/test/benchmarks/continue/main.cpp
    lldb/packages/Python/lldbsuite/test/benchmarks/expression/Makefile
    lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestExpressionCmd.py
    lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestRepeatedExprs.py
    lldb/packages/Python/lldbsuite/test/benchmarks/expression/main.cpp
    lldb/packages/Python/lldbsuite/test/benchmarks/frame_variable/TestFrameVariableResponse.py
    lldb/packages/Python/lldbsuite/test/benchmarks/libcxxlist/Makefile
    lldb/packages/Python/lldbsuite/test/benchmarks/libcxxlist/TestBenchmarkLibcxxList.py
    lldb/packages/Python/lldbsuite/test/benchmarks/libcxxlist/main.cpp
    lldb/packages/Python/lldbsuite/test/benchmarks/libcxxmap/Makefile
    lldb/packages/Python/lldbsuite/test/benchmarks/libcxxmap/TestBenchmarkLibcxxMap.py
    lldb/packages/Python/lldbsuite/test/benchmarks/libcxxmap/main.cpp
    lldb/packages/Python/lldbsuite/test/benchmarks/startup/TestStartupDelays.py
    lldb/packages/Python/lldbsuite/test/benchmarks/stepping/TestSteppingSpeed.py
    lldb/packages/Python/lldbsuite/test/benchmarks/turnaround/TestCompileRunToBreakpointTurnaround.py
    lldb/packages/Python/lldbsuite/test/commands/add-dsym/uuid/Makefile
    lldb/packages/Python/lldbsuite/test/commands/add-dsym/uuid/TestAddDsymCommand.py
    lldb/packages/Python/lldbsuite/test/commands/add-dsym/uuid/main.cpp.template
    lldb/packages/Python/lldbsuite/test/commands/apropos/basic/TestApropos.py
    lldb/packages/Python/lldbsuite/test/commands/apropos/with-process/Makefile
    lldb/packages/Python/lldbsuite/test/commands/apropos/with-process/TestAproposWithProcess.py
    lldb/packages/Python/lldbsuite/test/commands/apropos/with-process/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/breakpoint/command/list/TestBreakpointCommandList.py
    lldb/packages/Python/lldbsuite/test/commands/breakpoint/command/list/a.yaml
    lldb/packages/Python/lldbsuite/test/commands/command/.categories
    lldb/packages/Python/lldbsuite/test/commands/command/delete/TestCommandDelete.py
    lldb/packages/Python/lldbsuite/test/commands/command/history/TestCommandHistory.py
    lldb/packages/Python/lldbsuite/test/commands/command/invalid-args/TestInvalidArgsCommand.py
    lldb/packages/Python/lldbsuite/test/commands/command/nested_alias/Makefile
    lldb/packages/Python/lldbsuite/test/commands/command/nested_alias/TestNestedAlias.py
    lldb/packages/Python/lldbsuite/test/commands/command/nested_alias/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/command/script/Makefile
    lldb/packages/Python/lldbsuite/test/commands/command/script/TestCommandScript.py
    lldb/packages/Python/lldbsuite/test/commands/command/script/bug11569.py
    lldb/packages/Python/lldbsuite/test/commands/command/script/callables.py
    lldb/packages/Python/lldbsuite/test/commands/command/script/decorated.py
    lldb/packages/Python/lldbsuite/test/commands/command/script/import/Makefile
    lldb/packages/Python/lldbsuite/test/commands/command/script/import/TestImport.py
    lldb/packages/Python/lldbsuite/test/commands/command/script/import/bar/bar.py
    lldb/packages/Python/lldbsuite/test/commands/command/script/import/bar/barutil.py
    lldb/packages/Python/lldbsuite/test/commands/command/script/import/dummymodule.py
    lldb/packages/Python/lldbsuite/test/commands/command/script/import/foo/bar/foobar.py
    lldb/packages/Python/lldbsuite/test/commands/command/script/import/foo/foo.py
    lldb/packages/Python/lldbsuite/test/commands/command/script/import/foo/foo2.py
    lldb/packages/Python/lldbsuite/test/commands/command/script/import/main.c
    lldb/packages/Python/lldbsuite/test/commands/command/script/import/rdar-12586188/Makefile
    lldb/packages/Python/lldbsuite/test/commands/command/script/import/rdar-12586188/TestRdar12586188.py
    lldb/packages/Python/lldbsuite/test/commands/command/script/import/rdar-12586188/fail12586188.py
    lldb/packages/Python/lldbsuite/test/commands/command/script/import/rdar-12586188/fail212586188.py
    lldb/packages/Python/lldbsuite/test/commands/command/script/import/thepackage/TPunitA.py
    lldb/packages/Python/lldbsuite/test/commands/command/script/import/thepackage/TPunitB.py
    lldb/packages/Python/lldbsuite/test/commands/command/script/import/thepackage/__init__.py
    lldb/packages/Python/lldbsuite/test/commands/command/script/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/command/script/mysto.py
    lldb/packages/Python/lldbsuite/test/commands/command/script/py_import
    lldb/packages/Python/lldbsuite/test/commands/command/script/welcome.py
    lldb/packages/Python/lldbsuite/test/commands/command/script_alias/TestCommandScriptAlias.py
    lldb/packages/Python/lldbsuite/test/commands/command/script_alias/tcsacmd.py
    lldb/packages/Python/lldbsuite/test/commands/command/source/.lldb
    lldb/packages/Python/lldbsuite/test/commands/command/source/TestCommandSource.py
    lldb/packages/Python/lldbsuite/test/commands/command/source/commands.txt
    lldb/packages/Python/lldbsuite/test/commands/command/source/my.py
    lldb/packages/Python/lldbsuite/test/commands/disassemble/basic/Makefile
    lldb/packages/Python/lldbsuite/test/commands/disassemble/basic/TestDisassembleBreakpoint.py
    lldb/packages/Python/lldbsuite/test/commands/disassemble/basic/TestFrameDisassemble.py
    lldb/packages/Python/lldbsuite/test/commands/disassemble/basic/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/.categories
    lldb/packages/Python/lldbsuite/test/commands/expression/anonymous-struct/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/anonymous-struct/TestCallUserAnonTypedef.py
    lldb/packages/Python/lldbsuite/test/commands/expression/anonymous-struct/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/argument_passing_restrictions/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/argument_passing_restrictions/TestArgumentPassingRestrictions.py
    lldb/packages/Python/lldbsuite/test/commands/expression/argument_passing_restrictions/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/calculator_mode/TestCalculatorMode.py
    lldb/packages/Python/lldbsuite/test/commands/expression/call-function/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallBuiltinFunction.py
    lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallStdStringFunction.py
    lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallStopAndContinue.py
    lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallUserDefinedFunction.py
    lldb/packages/Python/lldbsuite/test/commands/expression/call-function/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/call-restarts/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/call-restarts/TestCallThatRestarts.py
    lldb/packages/Python/lldbsuite/test/commands/expression/call-restarts/lotta-signals.c
    lldb/packages/Python/lldbsuite/test/commands/expression/call-throws/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/call-throws/TestCallThatThrows.py
    lldb/packages/Python/lldbsuite/test/commands/expression/call-throws/call-throws.m
    lldb/packages/Python/lldbsuite/test/commands/expression/cast_int_to_anonymous_enum/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/cast_int_to_anonymous_enum/TestCastIntToAnonymousEnum.py
    lldb/packages/Python/lldbsuite/test/commands/expression/cast_int_to_anonymous_enum/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/char/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/char/TestExprsChar.py
    lldb/packages/Python/lldbsuite/test/commands/expression/char/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/class_template_specialization_empty_pack/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/class_template_specialization_empty_pack/TestClassTemplateSpecializationParametersHandling.py
    lldb/packages/Python/lldbsuite/test/commands/expression/class_template_specialization_empty_pack/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/codegen-crash-typedefdecl-not-in_declcontext/TestCodegenCrashTypedefDeclNotInDeclContext.py
    lldb/packages/Python/lldbsuite/test/commands/expression/codegen-crash-typedefdecl-not-in_declcontext/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/completion-crash-incomplete-record/TestCompletionCrashIncompleteRecord.py
    lldb/packages/Python/lldbsuite/test/commands/expression/completion-crash-incomplete-record/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/completion-crash-invalid-iterator/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/completion-crash-invalid-iterator/TestInvalidIteratorCompletionCrash.py
    lldb/packages/Python/lldbsuite/test/commands/expression/completion-crash-invalid-iterator/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/completion-in-lambda-and-unnamed-class/TestCompletionInLambdaAndUnnamedClass.py
    lldb/packages/Python/lldbsuite/test/commands/expression/completion-in-lambda-and-unnamed-class/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/completion/.categories
    lldb/packages/Python/lldbsuite/test/commands/expression/completion/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/completion/TestExprCompletion.py
    lldb/packages/Python/lldbsuite/test/commands/expression/completion/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/completion/other.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/context-object-objc/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/context-object-objc/TestContextObjectObjc.py
    lldb/packages/Python/lldbsuite/test/commands/expression/context-object-objc/main.m
    lldb/packages/Python/lldbsuite/test/commands/expression/context-object/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/context-object/TestContextObject.py
    lldb/packages/Python/lldbsuite/test/commands/expression/context-object/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/deleting-implicit-copy-constructor/TestDeletingImplicitCopyConstructor.py
    lldb/packages/Python/lldbsuite/test/commands/expression/deleting-implicit-copy-constructor/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/diagnostics/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/diagnostics/TestExprDiagnostics.py
    lldb/packages/Python/lldbsuite/test/commands/expression/diagnostics/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/dollar-in-variable/TestDollarInVariable.py
    lldb/packages/Python/lldbsuite/test/commands/expression/dollar-in-variable/main.c
    lldb/packages/Python/lldbsuite/test/commands/expression/dont_allow_jit/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/dont_allow_jit/TestAllowJIT.py
    lldb/packages/Python/lldbsuite/test/commands/expression/dont_allow_jit/main.c
    lldb/packages/Python/lldbsuite/test/commands/expression/entry-bp/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/entry-bp/TestExprEntryBP.py
    lldb/packages/Python/lldbsuite/test/commands/expression/entry-bp/main.c
    lldb/packages/Python/lldbsuite/test/commands/expression/expr-in-syscall/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/expr-in-syscall/TestExpressionInSyscall.py
    lldb/packages/Python/lldbsuite/test/commands/expression/expr-in-syscall/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/fixits/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/fixits/TestFixIts.py
    lldb/packages/Python/lldbsuite/test/commands/expression/fixits/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/formatters/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/formatters/TestFormatters.py
    lldb/packages/Python/lldbsuite/test/commands/expression/formatters/foosynth.py
    lldb/packages/Python/lldbsuite/test/commands/expression/formatters/formatters.py
    lldb/packages/Python/lldbsuite/test/commands/expression/formatters/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/function_template_specialization_temp_args/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/function_template_specialization_temp_args/TestFunctionTemplateSpecializationTempArgs.py
    lldb/packages/Python/lldbsuite/test/commands/expression/function_template_specialization_temp_args/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/ignore-artificial-constructors/TestIgnoreArtificialConstructors.py
    lldb/packages/Python/lldbsuite/test/commands/expression/ignore-artificial-constructors/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/basic/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/basic/TestImportStdModule.py
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/basic/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/conflicts/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/conflicts/TestStdModuleWithConflicts.py
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/conflicts/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-basic/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-basic/TestDequeFromStdModule.py
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-basic/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-dbg-info-content/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-dbg-info-content/TestDbgInfoContentDequeFromStdModule.py
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-dbg-info-content/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/empty-module/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/empty-module/TestEmptyStdModule.py
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/empty-module/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/empty-module/root/usr/include/c++/v1/algorithm
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/empty-module/root/usr/include/c++/v1/module.modulemap
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/empty-module/root/usr/include/libc_header.h
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list-dbg-info-content/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list-dbg-info-content/TestDbgInfoContentForwardListFromStdModule.py
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list-dbg-info-content/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list/TestForwardListFromStdModule.py
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/list-dbg-info-content/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/list-dbg-info-content/TestDbgInfoContentListFromStdModule.py
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/list-dbg-info-content/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/list/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/list/TestListFromStdModule.py
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/list/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/no-std-module/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/no-std-module/TestMissingStdModule.py
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/no-std-module/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/queue/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/queue/TestQueueFromStdModule.py
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/queue/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr-dbg-info-content/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr-dbg-info-content/TestSharedPtrDbgInfoContentFromStdModule.py
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr-dbg-info-content/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr/TestSharedPtrFromStdModule.py
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/stack/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/stack/TestStackFromStdModule.py
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/stack/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/TestStdModuleSysroot.py
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/root/usr/include/c++/v1/algorithm
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/root/usr/include/c++/v1/module.modulemap
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/root/usr/include/libc_header.h
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr-dbg-info-content/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr-dbg-info-content/TestUniquePtrDbgInfoContent.py
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr-dbg-info-content/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr/TestUniquePtrFromStdModule.py
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-bool/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-bool/TestVectorBoolFromStdModule.py
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-bool/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-dbg-info-content/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-dbg-info-content/TestDbgInfoContentVectorFromStdModule.py
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-dbg-info-content/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-of-vectors/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-of-vectors/TestVectorOfVectorsFromStdModule.py
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-of-vectors/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector/TestVectorFromStdModule.py
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr-dbg-info-content/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr-dbg-info-content/TestDbgInfoContentWeakPtrFromStdModule.py
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr-dbg-info-content/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr/TestWeakPtrFromStdModule.py
    lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/import_builtin_fileid/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/import_builtin_fileid/TestImportBuiltinFileID.py
    lldb/packages/Python/lldbsuite/test/commands/expression/import_builtin_fileid/main.m
    lldb/packages/Python/lldbsuite/test/commands/expression/inline-namespace/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/inline-namespace/TestInlineNamespace.py
    lldb/packages/Python/lldbsuite/test/commands/expression/inline-namespace/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/invalid-args/TestInvalidArgsExpression.py
    lldb/packages/Python/lldbsuite/test/commands/expression/ir-interpreter-phi-nodes/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/ir-interpreter-phi-nodes/TestIRInterpreterPHINodes.py
    lldb/packages/Python/lldbsuite/test/commands/expression/ir-interpreter-phi-nodes/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/ir-interpreter/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/ir-interpreter/TestIRInterpreter.py
    lldb/packages/Python/lldbsuite/test/commands/expression/ir-interpreter/main.c
    lldb/packages/Python/lldbsuite/test/commands/expression/issue_11588/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/issue_11588/Test11588.py
    lldb/packages/Python/lldbsuite/test/commands/expression/issue_11588/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/issue_11588/s11588.py
    lldb/packages/Python/lldbsuite/test/commands/expression/macros/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/macros/TestMacros.py
    lldb/packages/Python/lldbsuite/test/commands/expression/macros/macro1.h
    lldb/packages/Python/lldbsuite/test/commands/expression/macros/macro2.h
    lldb/packages/Python/lldbsuite/test/commands/expression/macros/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/multiline-completion/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/multiline-completion/TestMultilineCompletion.py
    lldb/packages/Python/lldbsuite/test/commands/expression/multiline-completion/main.c
    lldb/packages/Python/lldbsuite/test/commands/expression/multiline-navigation/TestMultilineNavigation.py
    lldb/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_cpp_and_c/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_cpp_and_c/TestNamespaceLocalVarSameNameCppAndC.py
    lldb/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_cpp_and_c/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_obj_c/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_obj_c/TestNamespaceLocalVarSameNameObjC.py
    lldb/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_obj_c/main.mm
    lldb/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_obj_c/util.mm
    lldb/packages/Python/lldbsuite/test/commands/expression/no-deadlock/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/no-deadlock/TestExprDoesntBlock.py
    lldb/packages/Python/lldbsuite/test/commands/expression/no-deadlock/locking.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/options/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/options/TestExprOptions.py
    lldb/packages/Python/lldbsuite/test/commands/expression/options/foo.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/options/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/persist_objc_pointeetype/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/persist_objc_pointeetype/TestPersistObjCPointeeType.py
    lldb/packages/Python/lldbsuite/test/commands/expression/persist_objc_pointeetype/main.m
    lldb/packages/Python/lldbsuite/test/commands/expression/persistent_ptr_update/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/persistent_ptr_update/TestPersistentPtrUpdate.py
    lldb/packages/Python/lldbsuite/test/commands/expression/persistent_ptr_update/main.c
    lldb/packages/Python/lldbsuite/test/commands/expression/persistent_types/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/persistent_types/TestNestedPersistentTypes.py
    lldb/packages/Python/lldbsuite/test/commands/expression/persistent_types/TestPersistentTypes.py
    lldb/packages/Python/lldbsuite/test/commands/expression/persistent_types/main.c
    lldb/packages/Python/lldbsuite/test/commands/expression/persistent_variables/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/persistent_variables/TestPersistentVariables.py
    lldb/packages/Python/lldbsuite/test/commands/expression/persistent_variables/main.c
    lldb/packages/Python/lldbsuite/test/commands/expression/po_verbosity/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/po_verbosity/TestPoVerbosity.py
    lldb/packages/Python/lldbsuite/test/commands/expression/po_verbosity/main.m
    lldb/packages/Python/lldbsuite/test/commands/expression/pr35310/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/pr35310/TestExprsBug35310.py
    lldb/packages/Python/lldbsuite/test/commands/expression/pr35310/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/radar_8638051/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/radar_8638051/Test8638051.py
    lldb/packages/Python/lldbsuite/test/commands/expression/radar_8638051/main.c
    lldb/packages/Python/lldbsuite/test/commands/expression/radar_9531204/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/radar_9531204/TestPrintfAfterUp.py
    lldb/packages/Python/lldbsuite/test/commands/expression/radar_9531204/main.c
    lldb/packages/Python/lldbsuite/test/commands/expression/radar_9673664/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/radar_9673664/TestExprHelpExamples.py
    lldb/packages/Python/lldbsuite/test/commands/expression/radar_9673664/main.c
    lldb/packages/Python/lldbsuite/test/commands/expression/rdar42038760/TestScalarURem.py
    lldb/packages/Python/lldbsuite/test/commands/expression/rdar42038760/main.c
    lldb/packages/Python/lldbsuite/test/commands/expression/rdar44436068/Test128BitsInteger.py
    lldb/packages/Python/lldbsuite/test/commands/expression/rdar44436068/main.c
    lldb/packages/Python/lldbsuite/test/commands/expression/regression-access-function-template-in-record/TestRegressionAccessFunctionTemplateInRecord.py
    lldb/packages/Python/lldbsuite/test/commands/expression/regression-access-function-template-in-record/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/save_jit_objects/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/save_jit_objects/TestSaveJITObjects.py
    lldb/packages/Python/lldbsuite/test/commands/expression/save_jit_objects/main.c
    lldb/packages/Python/lldbsuite/test/commands/expression/scoped_enums/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/scoped_enums/TestScopedEnumType.py
    lldb/packages/Python/lldbsuite/test/commands/expression/scoped_enums/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/static-initializers/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/static-initializers/TestStaticInitializers.py
    lldb/packages/Python/lldbsuite/test/commands/expression/static-initializers/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/test/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/test/TestExprs.py
    lldb/packages/Python/lldbsuite/test/commands/expression/test/TestExprs2.py
    lldb/packages/Python/lldbsuite/test/commands/expression/test/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/timeout/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/timeout/TestCallWithTimeout.py
    lldb/packages/Python/lldbsuite/test/commands/expression/timeout/wait-a-while.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/top-level/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/top-level/TestTopLevelExprs.py
    lldb/packages/Python/lldbsuite/test/commands/expression/top-level/dummy.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/top-level/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/top-level/test.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/two-files/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/two-files/TestObjCTypeQueryFromOtherCompileUnit.py
    lldb/packages/Python/lldbsuite/test/commands/expression/two-files/foo.m
    lldb/packages/Python/lldbsuite/test/commands/expression/two-files/main.m
    lldb/packages/Python/lldbsuite/test/commands/expression/unicode-in-variable/TestUnicodeInVariable.py
    lldb/packages/Python/lldbsuite/test/commands/expression/unicode-in-variable/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/unwind_expression/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/unwind_expression/TestUnwindExpression.py
    lldb/packages/Python/lldbsuite/test/commands/expression/unwind_expression/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/vector_of_enums/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/vector_of_enums/TestVectorOfEnums.py
    lldb/packages/Python/lldbsuite/test/commands/expression/vector_of_enums/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/expression/weak_symbols/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/weak_symbols/TestWeakSymbols.py
    lldb/packages/Python/lldbsuite/test/commands/expression/weak_symbols/dylib.c
    lldb/packages/Python/lldbsuite/test/commands/expression/weak_symbols/dylib.h
    lldb/packages/Python/lldbsuite/test/commands/expression/weak_symbols/main.c
    lldb/packages/Python/lldbsuite/test/commands/expression/weak_symbols/module.modulemap
    lldb/packages/Python/lldbsuite/test/commands/expression/xvalue/Makefile
    lldb/packages/Python/lldbsuite/test/commands/expression/xvalue/TestXValuePrinting.py
    lldb/packages/Python/lldbsuite/test/commands/expression/xvalue/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/array/Makefile
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/array/TestArray.py
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/array/main.c
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/bad-reference/Makefile
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/bad-reference/TestBadReference.py
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/bad-reference/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/complicated-expression/Makefile
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/complicated-expression/TestComplicatedExpression.py
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/complicated-expression/main.c
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-argument/Makefile
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-argument/TestDiagnoseDereferenceArgument.py
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-argument/main.c
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-function-return/Makefile
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-function-return/TestDiagnoseDereferenceFunctionReturn.py
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-function-return/main.c
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-this/Makefile
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-this/TestDiagnoseDereferenceThis.py
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-this/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/inheritance/Makefile
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/inheritance/TestDiagnoseInheritance.py
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/inheritance/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/local-variable/Makefile
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/local-variable/TestLocalVariable.py
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/local-variable/main.c
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/virtual-method-call/Makefile
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/virtual-method-call/TestDiagnoseDereferenceVirtualMethodCall.py
    lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/virtual-method-call/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/frame/language/Makefile
    lldb/packages/Python/lldbsuite/test/commands/frame/language/TestGuessLanguage.py
    lldb/packages/Python/lldbsuite/test/commands/frame/language/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/frame/language/other-2.cpp
    lldb/packages/Python/lldbsuite/test/commands/frame/language/other.cpp
    lldb/packages/Python/lldbsuite/test/commands/frame/language/other.h
    lldb/packages/Python/lldbsuite/test/commands/frame/language/somefunc.c
    lldb/packages/Python/lldbsuite/test/commands/frame/recognizer/Makefile
    lldb/packages/Python/lldbsuite/test/commands/frame/recognizer/TestFrameRecognizer.py
    lldb/packages/Python/lldbsuite/test/commands/frame/recognizer/main.m
    lldb/packages/Python/lldbsuite/test/commands/frame/recognizer/recognizer.py
    lldb/packages/Python/lldbsuite/test/commands/frame/select/Makefile
    lldb/packages/Python/lldbsuite/test/commands/frame/select/TestFrameSelect.py
    lldb/packages/Python/lldbsuite/test/commands/frame/select/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/frame/var-scope/TestFrameVariableScope.py
    lldb/packages/Python/lldbsuite/test/commands/frame/var-scope/main.c
    lldb/packages/Python/lldbsuite/test/commands/frame/var/Makefile
    lldb/packages/Python/lldbsuite/test/commands/frame/var/TestFrameVar.py
    lldb/packages/Python/lldbsuite/test/commands/frame/var/main.c
    lldb/packages/Python/lldbsuite/test/commands/gui/basic/Makefile
    lldb/packages/Python/lldbsuite/test/commands/gui/basic/TestGuiBasic.py
    lldb/packages/Python/lldbsuite/test/commands/gui/basic/main.c
    lldb/packages/Python/lldbsuite/test/commands/gui/invalid-args/TestInvalidArgsGui.py
    lldb/packages/Python/lldbsuite/test/commands/help/TestHelp.py
    lldb/packages/Python/lldbsuite/test/commands/log/basic/Makefile
    lldb/packages/Python/lldbsuite/test/commands/log/basic/TestLogging.py
    lldb/packages/Python/lldbsuite/test/commands/log/basic/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/log/invalid-args/TestInvalidArgsLog.py
    lldb/packages/Python/lldbsuite/test/commands/platform/basic/TestPlatformCommand.py
    lldb/packages/Python/lldbsuite/test/commands/platform/basic/TestPlatformPython.py
    lldb/packages/Python/lldbsuite/test/commands/platform/process/Makefile
    lldb/packages/Python/lldbsuite/test/commands/platform/process/TestProcessList.py
    lldb/packages/Python/lldbsuite/test/commands/platform/process/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/process/attach-resume/Makefile
    lldb/packages/Python/lldbsuite/test/commands/process/attach-resume/TestAttachResume.py
    lldb/packages/Python/lldbsuite/test/commands/process/attach-resume/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/process/attach/Makefile
    lldb/packages/Python/lldbsuite/test/commands/process/attach/TestProcessAttach.py
    lldb/packages/Python/lldbsuite/test/commands/process/attach/attach_denied/Makefile
    lldb/packages/Python/lldbsuite/test/commands/process/attach/attach_denied/TestAttachDenied.py
    lldb/packages/Python/lldbsuite/test/commands/process/attach/attach_denied/entitlements.plist
    lldb/packages/Python/lldbsuite/test/commands/process/attach/attach_denied/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/process/attach/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/Makefile
    lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/TestLaunchWithShellExpand.py
    lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/file1.txt
    lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/file2.txt
    lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/file3.txt
    lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/file4.txy
    lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/file5.tyx
    lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/foo bar
    lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/process/launch/Makefile
    lldb/packages/Python/lldbsuite/test/commands/process/launch/TestProcessLaunch.py
    lldb/packages/Python/lldbsuite/test/commands/process/launch/input-file.txt
    lldb/packages/Python/lldbsuite/test/commands/process/launch/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/process/launch/print_cwd.cpp
    lldb/packages/Python/lldbsuite/test/commands/process/launch/print_env.cpp
    lldb/packages/Python/lldbsuite/test/commands/quit/TestQuit.py
    lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/Makefile
    lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/TestMPXRegisters.py
    lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/mpx_bound_violation/Makefile
    lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/mpx_bound_violation/TestBoundViolation.py
    lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/mpx_bound_violation/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/mpx_offset_intersection/Makefile
    lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/mpx_offset_intersection/TestMPXOffsetIntersection.py
    lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/mpx_offset_intersection/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/register/register/register_command/Makefile
    lldb/packages/Python/lldbsuite/test/commands/register/register/register_command/TestRegisters.py
    lldb/packages/Python/lldbsuite/test/commands/register/register/register_command/a.cpp
    lldb/packages/Python/lldbsuite/test/commands/register/register/register_command/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/reproducer/invalid-args/TestInvalidArgsReproducer.py
    lldb/packages/Python/lldbsuite/test/commands/settings/Makefile
    lldb/packages/Python/lldbsuite/test/commands/settings/TestSettings.py
    lldb/packages/Python/lldbsuite/test/commands/settings/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/settings/quoting/Makefile
    lldb/packages/Python/lldbsuite/test/commands/settings/quoting/TestQuoting.py
    lldb/packages/Python/lldbsuite/test/commands/settings/quoting/main.c
    lldb/packages/Python/lldbsuite/test/commands/source/info/TestSourceInfo.py
    lldb/packages/Python/lldbsuite/test/commands/source/info/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/source/info/second.cpp
    lldb/packages/Python/lldbsuite/test/commands/statistics/basic/TestStats.py
    lldb/packages/Python/lldbsuite/test/commands/statistics/basic/main.c
    lldb/packages/Python/lldbsuite/test/commands/target/auto-install-main-executable/Makefile
    lldb/packages/Python/lldbsuite/test/commands/target/auto-install-main-executable/TestAutoInstallMainExecutable.py
    lldb/packages/Python/lldbsuite/test/commands/target/auto-install-main-executable/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/target/basic/Makefile
    lldb/packages/Python/lldbsuite/test/commands/target/basic/TestTargetCommand.py
    lldb/packages/Python/lldbsuite/test/commands/target/basic/a.c
    lldb/packages/Python/lldbsuite/test/commands/target/basic/b.c
    lldb/packages/Python/lldbsuite/test/commands/target/basic/c.c
    lldb/packages/Python/lldbsuite/test/commands/target/basic/globals.c
    lldb/packages/Python/lldbsuite/test/commands/target/basic/invalid_core_file
    lldb/packages/Python/lldbsuite/test/commands/target/create-deps/Makefile
    lldb/packages/Python/lldbsuite/test/commands/target/create-deps/TestTargetCreateDeps.py
    lldb/packages/Python/lldbsuite/test/commands/target/create-deps/a.cpp
    lldb/packages/Python/lldbsuite/test/commands/target/create-deps/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/target/create-no-such-arch/Makefile
    lldb/packages/Python/lldbsuite/test/commands/target/create-no-such-arch/TestNoSuchArch.py
    lldb/packages/Python/lldbsuite/test/commands/target/create-no-such-arch/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/target/dump-symtab-demangle/TestDumpSymtabDemangle.py
    lldb/packages/Python/lldbsuite/test/commands/target/dump-symtab-demangle/a.yaml
    lldb/packages/Python/lldbsuite/test/commands/target/stop-hooks/Makefile
    lldb/packages/Python/lldbsuite/test/commands/target/stop-hooks/TestStopHooks.py
    lldb/packages/Python/lldbsuite/test/commands/target/stop-hooks/main.c
    lldb/packages/Python/lldbsuite/test/commands/version/TestVersion.py
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/.categories
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchlocation/Makefile
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchlocation/TestWatchLocation.py
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchlocation/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchpoint/Makefile
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchpoint/TestMyFirstWatchpoint.py
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchpoint/main.c
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/multi_watchpoint_slots/Makefile
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/multi_watchpoint_slots/TestWatchpointMultipleSlots.py
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/multi_watchpoint_slots/main.c
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/multiple_hits/Makefile
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/multiple_hits/TestMultipleHits.py
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/multiple_hits/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/multiple_threads/Makefile
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/multiple_threads/TestWatchpointMultipleThreads.py
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/multiple_threads/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/step_over_watchpoint/Makefile
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/step_over_watchpoint/TestStepOverWatchpoint.py
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/step_over_watchpoint/main.c
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/variable_out_of_scope/Makefile
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/variable_out_of_scope/TestWatchedVarHitWhenInScope.py
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/variable_out_of_scope/main.c
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/Makefile
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/TestWatchpointCommands.py
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/command/Makefile
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/command/TestWatchpointCommandLLDB.py
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/command/TestWatchpointCommandPython.py
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/command/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/command/watchpoint_command.py
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/condition/Makefile
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/condition/TestWatchpointConditionCmd.py
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/condition/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/main.c
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_disable/Makefile
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_disable/TestWatchpointDisable.py
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_disable/main.c
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_events/Makefile
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_events/TestWatchpointEvents.py
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_events/main.c
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_on_vectors/Makefile
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_on_vectors/TestValueOfVectorVariable.py
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_on_vectors/main.c
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_set_command/Makefile
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_set_command/TestWatchLocationWithWatchSet.py
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_set_command/main.cpp
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_size/Makefile
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_size/TestWatchpointSizes.py
    lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_size/main.c
    lldb/packages/Python/lldbsuite/test/driver/batch_mode/Makefile
    lldb/packages/Python/lldbsuite/test/driver/batch_mode/TestBatchMode.py
    lldb/packages/Python/lldbsuite/test/driver/batch_mode/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/abbreviation/.categories
    lldb/packages/Python/lldbsuite/test/functionalities/abbreviation/TestAbbreviations.py
    lldb/packages/Python/lldbsuite/test/functionalities/abbreviation/TestCommonShortSpellings.py
    lldb/packages/Python/lldbsuite/test/functionalities/alias/.categories
    lldb/packages/Python/lldbsuite/test/functionalities/archives/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/archives/README
    lldb/packages/Python/lldbsuite/test/functionalities/archives/TestBSDArchives.py
    lldb/packages/Python/lldbsuite/test/functionalities/archives/a.c
    lldb/packages/Python/lldbsuite/test/functionalities/archives/b.c
    lldb/packages/Python/lldbsuite/test/functionalities/archives/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/asan/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py
    lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py
    lldb/packages/Python/lldbsuite/test/functionalities/asan/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/avoids-fd-leak/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/avoids-fd-leak/TestFdLeak.py
    lldb/packages/Python/lldbsuite/test/functionalities/avoids-fd-leak/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/backticks/.categories
    lldb/packages/Python/lldbsuite/test/functionalities/backticks/TestBackticksWithoutATarget.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/TestAddressBreakpoints.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/TestBadAddressBreakpoints.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/TestBreakpointAutoContinue.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_by_line_and_column/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_by_line_and_column/TestBreakpointByLineAndColumn.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_by_line_and_column/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_callback_command_source/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_callback_command_source/TestBreakpointCallbackCommandSource.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_callback_command_source/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_callback_command_source/source.lldb
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommandsFromPython.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/TestRegexpBreakCommand.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/a.c
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/b.c
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/bktptcmd.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/side_effect.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_conditions/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_conditions/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_hit_count/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_hit_count/TestBreakpointHitCount.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_hit_count/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ids/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ids/TestBreakpointIDs.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ids/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ignore_count/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ignore_count/TestBreakpointIgnoreCount.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ignore_count/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_in_delayslot/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_in_delayslot/TestAvoidBreakpointInDelaySlot.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_in_delayslot/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/TestBreakpointLanguage.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/a.c
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/b.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_names/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_names/TestBreakpointNames.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_names/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_options/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_options/TestBreakpointOptions.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_options/foo.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_options/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_set_restart/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_set_restart/TestBreakpointSetRestart.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_set_restart/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/comp_dir_symlink/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/comp_dir_symlink/TestCompDirSymLink.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/comp_dir_symlink/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/TestConsecutiveBreakpoints.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/TestCPPBreakpointLocations.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp_exception/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp_exception/TestCPPExceptionBreakpoint.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp_exception/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/TestDebugBreak.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/dummy_target_breakpoints/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/dummy_target_breakpoints/TestBreakpointsWithNoTargets.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/dummy_target_breakpoints/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/TestBreakpointInGlobalConstructor.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/foo.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/foo.h
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/TestHWBreakMultiThread.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/inlined_breakpoints/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/inlined_breakpoints/TestInlinedBreakpoints.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/inlined_breakpoints/basic_type.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/inlined_breakpoints/int.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/TestMoveNearest.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/foo.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/foo.h
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/objc/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/objc/TestObjCBreakpoints.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/objc/main.m
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/TestRequireHWBreakpoints.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/TestScriptedResolver.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/resolver.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/TestBreakpointSerialization.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/resolver.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/side_effect.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/TestSourceRegexBreakpoints.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/a.c
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/a.h
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/step_over_breakpoint/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/step_over_breakpoint/TestStepOverBreakpoint.py
    lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/step_over_breakpoint/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/completion/.categories
    lldb/packages/Python/lldbsuite/test/functionalities/completion/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py
    lldb/packages/Python/lldbsuite/test/functionalities/completion/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/conditional_break/.lldb
    lldb/packages/Python/lldbsuite/test/functionalities/conditional_break/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/conditional_break/TestConditionalBreak.py
    lldb/packages/Python/lldbsuite/test/functionalities/conditional_break/conditional_break.py
    lldb/packages/Python/lldbsuite/test/functionalities/conditional_break/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/.categories
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/basic/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/basic/TestDarwinLogBasic.py
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/basic/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/common/darwin_log_common.h
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity-chain/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity-chain/TestDarwinLogFilterMatchActivityChain.py
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity-chain/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity/TestDarwinLogFilterMatchActivity.py
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/category/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/category/TestDarwinLogFilterMatchCategory.py
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/category/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/TestDarwinLogFilterMatchMessage.py
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/subsystem/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/subsystem/TestDarwinLogFilterMatchSubsystem.py
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/subsystem/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity-chain/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity-chain/TestDarwinLogFilterRegexActivityChain.py
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity-chain/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity/TestDarwinLogFilterRegexActivity.py
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/category/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/category/TestDarwinLogFilterRegexCategory.py
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/category/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/message/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/message/TestDarwinLogFilterRegexMessage.py
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/message/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/subsystem/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/subsystem/TestDarwinLogFilterRegexSubsystem.py
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/subsystem/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/format/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/format/TestDarwinLogMessageFormat.py
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/format/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/debug/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/debug/TestDarwinLogSourceDebug.py
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/debug/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/info/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/info/TestDarwinLogSourceInfo.py
    lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/info/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/.categories
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/array_typedef/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/array_typedef/TestArrayTypedef.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/array_typedef/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/boolreference/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/boolreference/TestFormattersBoolRefPtr.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/boolreference/main.mm
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/compactvectors/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/compactvectors/TestCompactVectors.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/compactvectors/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-advanced/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-advanced/TestDataFormatterAdv.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-advanced/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-caching/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-caching/TestDataFormatterCaching.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-caching/a.c
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-caching/b.c
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-categories/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-categories/TestDataFormatterCategories.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-categories/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/TestDataFormatterCpp.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-disabling/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-disabling/TestDataFormatterDisabling.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-disabling/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-enum-format/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-enum-format/TestDataFormatterEnumFormat.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-enum-format/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-globals/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-globals/TestDataFormatterGlobals.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-globals/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-named-summaries/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-named-summaries/TestDataFormatterNamedSummaries.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-named-summaries/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/.categories
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/ObjCDataFormatterTestCase.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCCF.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCExpr.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCKVO.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSBundle.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSContainer.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSData.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSDate.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSError.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSURL.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCPlain.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjNSException.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/cmtime/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/cmtime/TestDataFormatterCMTime.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/cmtime/main.m
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/main.m
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsindexpath/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsindexpath/TestDataFormatterNSIndexPath.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsindexpath/main.m
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsstring/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsstring/TestDataFormatterNSString.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsstring/main.m
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-proper-plurals/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-proper-plurals/TestFormattersOneIsSingular.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-proper-plurals/main.m
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-ptr-to-array/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-ptr-to-array/TestPtrToArrayFormatting.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-ptr-to-array/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/TestDataFormatterPythonSynth.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/fooSynthProvider.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/ftsp.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-script/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-script/TestDataFormatterScript.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-script/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-skip-summary/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-skip-summary/TestDataFormatterSkipSummary.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-skip-summary/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-smart-array/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-smart-array/TestDataFormatterSmartArray.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-smart-array/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/TestLibCxxAtomic.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/TestDataFormatterLibcxxBitset.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/TestDataFormatterLibcxxForwardList.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/TestLibCxxFunction.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/TestInitializerList.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/TestDataFormatterLibccIterator.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/TestDataFormatterLibcxxList.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/TestDataFormatterLibcxxListLoop.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/TestDataFormatterLibccMap.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/TestDataFormatterLibccMultiMap.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/TestDataFormatterLibcxxMultiSet.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/optional/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/optional/TestDataFormatterLibcxxOptional.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/optional/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/queue/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/queue/TestDataFormatterLibcxxQueue.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/queue/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/set/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/set/TestDataFormatterLibcxxSet.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/set/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/string/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/string/TestDataFormatterLibcxxString.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/string/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/TestDataFormatterLibcxxTuple.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/TestDataFormatterUnordered.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/variant/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/variant/TestDataFormatterLibcxxVariant.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/variant/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/TestDataFormatterLibcxxVBool.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/TestDataFormatterLibcxxVector.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/TestDataFormatterStdIterator.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/TestDataFormatterStdList.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/TestDataFormatterStdMap.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/TestDataFormatterStdSmartPtr.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/TestDataFormatterStdString.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/TestDataFormatterStdTuple.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/TestDataFormatterStdUniquePtr.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/invalid/TestDataFormatterInvalidStdUniquePtr.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/invalid/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/TestDataFormatterStdVBool.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/TestDataFormatterStdVector.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synth/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synth/TestDataFormatterSynth.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synth/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/TestDataFormatterSynthType.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/myIntSynthProvider.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthval/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthval/TestDataFormatterSynthVal.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthval/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthval/myIntSynthProvider.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/dump_dynamic/TestDumpDynamic.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/dump_dynamic/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/format-propagation/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/format-propagation/TestFormatPropagation.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/format-propagation/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/frameformat_smallstruct/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/frameformat_smallstruct/TestFrameFormatSmallStruct.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/frameformat_smallstruct/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/hexcaps/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/hexcaps/TestDataFormatterHexCaps.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/hexcaps/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/language_category_updates/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/language_category_updates/TestDataFormatterLanguageCategoryUpdates.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/language_category_updates/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsarraysynth/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsarraysynth/TestNSArraySynthetic.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsarraysynth/main.m
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsdictionarysynth/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsdictionarysynth/TestNSDictionarySynthetic.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsdictionarysynth/main.m
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nssetsynth/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nssetsynth/TestNSSetSynthetic.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nssetsynth/main.m
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ostypeformatting/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ostypeformatting/TestFormattersOsType.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ostypeformatting/main.mm
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/parray/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/parray/TestPrintArray.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/parray/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/poarray/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/poarray/TestPrintObjectArray.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/poarray/main.mm
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ptr_ref_typedef/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ptr_ref_typedef/TestPtrRef2Typedef.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ptr_ref_typedef/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/TestPyObjSynthProvider.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/provider.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/refpointer-recursion/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/refpointer-recursion/TestDataFormatterRefPtrRecursion.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/refpointer-recursion/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/setvaluefromcstring/TestSetValueFromCString.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/setvaluefromcstring/main.m
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter/TestStringPrinter.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/summary-string-onfail/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/summary-string-onfail/Test-rdar-9974002.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/summary-string-onfail/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/TestSyntheticCapping.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/fooSynthProvider.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthupdate/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthupdate/TestSyntheticFilterRecompute.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthupdate/main.m
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_arg/TestTypeSummaryListArg.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/TestTypeSummaryListScript.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/tslsformatters.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/typedef_array/TestTypedefArray.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/typedef_array/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/user-format-vs-summary/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/user-format-vs-summary/TestUserFormatVsSummary.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/user-format-vs-summary/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/var-in-aggregate-misuse/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/var-in-aggregate-misuse/TestVarInAggregateMisuse.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/var-in-aggregate-misuse/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/TestDataFormatterVarScriptFormatting.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/helperfunc.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/vector-types/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/vector-types/TestVectorTypesFormatting.py
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/vector-types/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/TestDeadStrip.py
    lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/cmds.txt
    lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/deleted-executable/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/deleted-executable/TestDeletedExecutable.py
    lldb/packages/Python/lldbsuite/test/functionalities/deleted-executable/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/dynamic_value_child_count/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/dynamic_value_child_count/TestDynamicValueChildCount.py
    lldb/packages/Python/lldbsuite/test/functionalities/dynamic_value_child_count/pass-to-base.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/exec/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/exec/TestExec.py
    lldb/packages/Python/lldbsuite/test/functionalities/exec/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/exec/secondprog.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/TestFatArchives.py
    lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/a.c
    lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/a.h
    lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/float-display/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/float-display/TestFloatDisplay.py
    lldb/packages/Python/lldbsuite/test/functionalities/float-display/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestArmRegisterDefinition.py
    lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestGDBRemoteClient.py
    lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestGDBRemoteLoad.py
    lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestJLink6Armv7RegisterDefinition.py
    lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestNestedRegDefinitions.py
    lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestNoGPacketSupported.py
    lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestNoWatchpointSupportInfo.py
    lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestPlatformClient.py
    lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestRecognizeBreakpoint.py
    lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestRegDefinitionInParts.py
    lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestRestartBug.py
    lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestStopPCs.py
    lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestTargetXMLArch.py
    lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestThreadSelectionBug.py
    lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestWriteMemory.py
    lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/a.yaml
    lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/basic_eh_frame.yaml
    lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/gdbclientutils.py
    lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/operating_system.py
    lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/operating_system_2.py
    lldb/packages/Python/lldbsuite/test/functionalities/history/TestHistoryRecall.py
    lldb/packages/Python/lldbsuite/test/functionalities/inferior-assert/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/inferior-assert/TestInferiorAssert.py
    lldb/packages/Python/lldbsuite/test/functionalities/inferior-assert/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/inferior-changed/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/inferior-changed/TestInferiorChanged.py
    lldb/packages/Python/lldbsuite/test/functionalities/inferior-changed/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/inferior-changed/main2.c
    lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/TestInferiorCrashing.py
    lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/TestInferiorCrashingStep.py
    lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/recursive-inferior/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py
    lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferiorStep.py
    lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/recursive-inferior/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/inline-stepping/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/inline-stepping/TestInlineStepping.py
    lldb/packages/Python/lldbsuite/test/functionalities/inline-stepping/calling.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/TestJITLoaderGDB.py
    lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/simple.c
    lldb/packages/Python/lldbsuite/test/functionalities/lazy-loading/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/lazy-loading/TestLazyLoading.py
    lldb/packages/Python/lldbsuite/test/functionalities/lazy-loading/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/load_unload/.categories
    lldb/packages/Python/lldbsuite/test/functionalities/load_unload/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/load_unload/TestLoadUnload.py
    lldb/packages/Python/lldbsuite/test/functionalities/load_unload/a.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/load_unload/b.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/load_unload/c.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/load_unload/cmds.txt
    lldb/packages/Python/lldbsuite/test/functionalities/load_unload/d.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/load_unload/hidden/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/load_unload/hidden/d.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/load_unload/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/.categories
    lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/TestLoadUsingPaths.py
    lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/hidden/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/hidden/d.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/longjmp/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/longjmp/TestLongjmp.py
    lldb/packages/Python/lldbsuite/test/functionalities/longjmp/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/memory-region/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/memory-region/TestMemoryRegion.py
    lldb/packages/Python/lldbsuite/test/functionalities/memory-region/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/memory/cache/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/memory/cache/TestMemoryCache.py
    lldb/packages/Python/lldbsuite/test/functionalities/memory/cache/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/memory/find/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/memory/find/TestMemoryFind.py
    lldb/packages/Python/lldbsuite/test/functionalities/memory/find/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/memory/read/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/memory/read/TestMemoryRead.py
    lldb/packages/Python/lldbsuite/test/functionalities/memory/read/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/mtc/simple/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/mtc/simple/TestMTCSimple.py
    lldb/packages/Python/lldbsuite/test/functionalities/mtc/simple/main.m
    lldb/packages/Python/lldbsuite/test/functionalities/multidebugger_commands/TestMultipleDebuggersCommands.py
    lldb/packages/Python/lldbsuite/test/functionalities/multiword-commands/TestMultiWordCommands.py
    lldb/packages/Python/lldbsuite/test/functionalities/non-overlapping-index-variable-i/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/non-overlapping-index-variable-i/TestIndexVariable.py
    lldb/packages/Python/lldbsuite/test/functionalities/non-overlapping-index-variable-i/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/object-file/TestImageListMultiArchitecture.py
    lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-freebsd-10.0-x86_64-clang-3.3
    lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-freebsd-10.0-x86_64-gcc-4.7.3
    lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-netbsd-6.1-x86_64-gcc-4.5.3
    lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-ubuntu-14.04-x86_64-clang-3.5pre
    lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-ubuntu-14.04-x86_64-gcc-4.8.2
    lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-unknown-kalimba_arch4-kcc-36
    lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-unknown-kalimba_arch5-kcc-39
    lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello.c
    lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/optimized_code/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/optimized_code/TestNoASanExceptionAfterEvalOP_piece.py
    lldb/packages/Python/lldbsuite/test/functionalities/optimized_code/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/TestBasicEntryValuesX86_64.py
    lldb/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/paths/TestPaths.py
    lldb/packages/Python/lldbsuite/test/functionalities/plugins/command_plugin/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/plugins/command_plugin/TestPluginCommands.py
    lldb/packages/Python/lldbsuite/test/functionalities/plugins/command_plugin/plugin.cpp.template
    lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/TestPythonOSPlugin.py
    lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/operating_system.py
    lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/operating_system2.py
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/TestLinuxCore.py
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/altmain.c
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/altmain.core
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/altmain.out
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/fpr_sse.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/TestGCore.py
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/linux-i386.core
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/linux-x86_64.core
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/main.mk
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/make-core.sh
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-arm.core
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-fpr_sse_i386.core
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-fpr_sse_x86_64.core
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-i386.core
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-i386.out
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mips64el-gnuabi64.core
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mips64el-gnuabi64.out
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mips64el-gnuabin32.core
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mips64el-gnuabin32.out
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mipsel-gnuabio32.core
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mipsel-gnuabio32.out
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-ppc64le.core
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-ppc64le.out
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-s390x.core
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-s390x.out
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-x86_64.core
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-x86_64.out
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/make-core.sh
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/TestLinuxCoreThreads.py
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/linux-i386.core
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/linux-x86_64.core
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/main.mk
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/make-core.sh
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/TestMachCore.py
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/operating_system.py
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/test.core.yaml
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/TestMiniDumpNew.py
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/TestMiniDumpUUID.py
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/arm-linux.yaml
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/arm-macos.yaml
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/arm64-macos.yaml
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/install_breakpad.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/libuuidmatch.yaml
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/libuuidmismatch.yaml
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-partial-uuids-match.yaml
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-partial-uuids-mismatch.yaml
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-same-uuids.yaml
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-uuids-elf-build-id-16.yaml
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-uuids-elf-build-id-20.yaml
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-uuids-elf-build-id-zero.yaml
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-uuids-no-age.yaml
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-uuids-with-age.yaml
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-zero-uuids.yaml
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64.dmp
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64.yaml
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64_not_crashed
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64_not_crashed.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64_not_crashed.dmp
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64_null_signal.yaml
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/macos-arm-uuids-no-age.yaml
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/makefile.txt
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/regions-linux-map.yaml
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/relative_module_name.yaml
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/TestMiniDump.py
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/fizzbuzz.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/fizzbuzz.syms
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/fizzbuzz_no_heap.dmp
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.aarch64
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.aarch64.core
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.amd64
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.amd64.core
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.c
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.aarch64
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.aarch64.core
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.amd64
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.amd64.core
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.c
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.aarch64
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.aarch64.core
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.amd64
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.amd64.core
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.c
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/GNUmakefile
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/TestNetBSDCore.py
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/wow64_minidump/TestWow64MiniDump.py
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/wow64_minidump/fizzbuzz.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/postmortem/wow64_minidump/fizzbuzz_wow64.dmp
    lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/TestPreRunDylibs.py
    lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/foo.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/foo.h
    lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/process_group/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/process_group/TestChangeProcessGroup.py
    lldb/packages/Python/lldbsuite/test/functionalities/process_group/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/process_save_core/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/process_save_core/TestProcessSaveCore.py
    lldb/packages/Python/lldbsuite/test/functionalities/process_save_core/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/ptr_refs/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/ptr_refs/TestPtrRefs.py
    lldb/packages/Python/lldbsuite/test/functionalities/ptr_refs/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/recursion/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/recursion/TestValueObjectRecursion.py
    lldb/packages/Python/lldbsuite/test/functionalities/recursion/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/rerun/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/rerun/TestRerun.py
    lldb/packages/Python/lldbsuite/test/functionalities/rerun/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/return-value/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/return-value/TestReturnValue.py
    lldb/packages/Python/lldbsuite/test/functionalities/return-value/call-func.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/set-data/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/set-data/TestSetData.py
    lldb/packages/Python/lldbsuite/test/functionalities/set-data/main.m
    lldb/packages/Python/lldbsuite/test/functionalities/show_location/TestShowLocationDwarf5.py
    lldb/packages/Python/lldbsuite/test/functionalities/show_location/a.yaml
    lldb/packages/Python/lldbsuite/test/functionalities/signal/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/signal/TestSendSignal.py
    lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-abrt/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-abrt/TestHandleAbort.py
    lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-abrt/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-segv/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-segv/TestHandleSegv.py
    lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-segv/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/signal/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/signal/raise/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/signal/raise/TestRaise.py
    lldb/packages/Python/lldbsuite/test/functionalities/signal/raise/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/source-map/TestTargetSourceMap.py
    lldb/packages/Python/lldbsuite/test/functionalities/source-map/Trivial/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/source-map/a.yaml
    lldb/packages/Python/lldbsuite/test/functionalities/stats_api/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/stats_api/TestStatisticsAPI.py
    lldb/packages/Python/lldbsuite/test/functionalities/stats_api/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/TestStepNoDebug.py
    lldb/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/with-debug.c
    lldb/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/without-debug.c
    lldb/packages/Python/lldbsuite/test/functionalities/step_scripted/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/step_scripted/Steps.py
    lldb/packages/Python/lldbsuite/test/functionalities/step_scripted/TestStepScripted.py
    lldb/packages/Python/lldbsuite/test/functionalities/step_scripted/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq1/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq1/TestAmbiguousTailCallSeq1.py
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq1/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq2/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq2/TestAmbiguousTailCallSeq2.py
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq2/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_dso/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_dso/One.mk
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_dso/One/One.c
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_dso/TestCrossDSOTailCalls.py
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_dso/Two.mk
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_dso/Two/Two.c
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_dso/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_dso/shared.h
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_object/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_object/One.c
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_object/TestCrossObjectTailCalls.py
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_object/Two.c
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_object/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_object/shared.h
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_call_site/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_call_site/TestDisambiguateCallSite.py
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_call_site/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/TestDisambiguatePathsToCommonSink.py
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_tail_call_seq/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_tail_call_seq/TestDisambiguateTailCallSeq.py
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_tail_call_seq/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/inlining_and_tail_calls/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/inlining_and_tail_calls/TestInliningAndTailCalls.py
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/inlining_and_tail_calls/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/TestTailCallFrameSBAPI.py
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_message/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_message/TestArtificialFrameStepOutMessage.py
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_message/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/TestSteppingOutWithArtificialFrames.py
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/unambiguous_sequence/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/unambiguous_sequence/TestUnambiguousTailCalls.py
    lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/unambiguous_sequence/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/target-new-solib-notifications/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/target-new-solib-notifications/TestModuleLoadedNotifys.py
    lldb/packages/Python/lldbsuite/test/functionalities/target-new-solib-notifications/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/target_var/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/target_var/TestTargetVar.py
    lldb/packages/Python/lldbsuite/test/functionalities/target_var/globals.c
    lldb/packages/Python/lldbsuite/test/functionalities/target_var/globals.ll
    lldb/packages/Python/lldbsuite/test/functionalities/testid/TestTestId.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/ParallelTask.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/TestBacktraceAll.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_limit/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_limit/TestBacktraceLimit.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_limit/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/thread/break_after_join/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/thread/break_after_join/TestBreakAfterJoin.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/break_after_join/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentBreakpointDelayBreakpointOneSignal.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentBreakpointOneDelayBreakpointThreads.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentBreakpointsDelayedBreakpointOneWatchpoint.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentCrashWithBreak.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentCrashWithSignal.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentCrashWithWatchpoint.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentCrashWithWatchpointBreakpointSignal.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelaySignalBreak.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelaySignalWatch.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelayWatchBreak.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelayedCrashWithBreakpointSignal.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelayedCrashWithBreakpointWatchpoint.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManyBreakpoints.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManyCrash.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManySignals.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManyWatchpoints.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentNWatchNBreak.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalBreak.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalDelayBreak.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalDelayWatch.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalNWatchNBreak.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalWatch.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalWatchBreak.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointThreads.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneDelaySignal.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneSignal.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneWatchpoint.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointThreads.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneBreakpoint.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneDelayBreakpoint.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneSignal.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentWatchBreak.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentWatchBreakDelay.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentWatchpointDelayWatchpointOneBreakpoint.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentWatchpointWithDelayWatchpointThreads.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/thread/crash_during_step/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/thread/crash_during_step/TestCrashDuringStep.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/crash_during_step/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/TestCreateAfterAttach.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/thread/create_during_step/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/thread/create_during_step/TestCreateDuringStep.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/create_during_step/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/TestExitDuringBreak.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/TestExitDuringStep.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/TestThreadJump.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/other.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/thread/multi_break/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/thread/multi_break/TestMultipleBreakpoints.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/multi_break/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/thread/num_threads/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/thread/num_threads/TestNumThreads.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/num_threads/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/thread/state/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/thread/state/TestThreadStates.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/state/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/thread/step_out/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/thread/step_out/TestThreadStepOut.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/step_out/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/.categories
    lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/TestStepUntil.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_exit/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_exit/TestThreadExit.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_exit/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break/TestThreadSpecificBreakpoint.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/TestThreadSpecificBpPlusCondition.py
    lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/tsan/basic/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/tsan/basic/TestTsanBasic.py
    lldb/packages/Python/lldbsuite/test/functionalities/tsan/basic/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/tsan/cpp_global_location/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/tsan/cpp_global_location/TestTsanCPPGlobalLocation.py
    lldb/packages/Python/lldbsuite/test/functionalities/tsan/cpp_global_location/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/tsan/global_location/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/tsan/global_location/TestTsanGlobalLocation.py
    lldb/packages/Python/lldbsuite/test/functionalities/tsan/global_location/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/tsan/multiple/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/tsan/multiple/TestTsanMultiple.py
    lldb/packages/Python/lldbsuite/test/functionalities/tsan/multiple/main.m
    lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_leak/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_leak/TestTsanThreadLeak.py
    lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_leak/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_numbers/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_numbers/TestTsanThreadNumbers.py
    lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_numbers/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/tty/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/tty/TestTerminal.py
    lldb/packages/Python/lldbsuite/test/functionalities/tty/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/type_completion/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/type_completion/TestTypeCompletion.py
    lldb/packages/Python/lldbsuite/test/functionalities/type_completion/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/type_lookup/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/type_lookup/TestTypeLookup.py
    lldb/packages/Python/lldbsuite/test/functionalities/type_lookup/main.mm
    lldb/packages/Python/lldbsuite/test/functionalities/ubsan/basic/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/ubsan/basic/TestUbsanBasic.py
    lldb/packages/Python/lldbsuite/test/functionalities/ubsan/basic/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/ubsan/user-expression/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/ubsan/user-expression/TestUbsanUserExpression.py
    lldb/packages/Python/lldbsuite/test/functionalities/ubsan/user-expression/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/unwind/ehframe/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/unwind/ehframe/TestEhFrameUnwind.py
    lldb/packages/Python/lldbsuite/test/functionalities/unwind/ehframe/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/TestNoreturnUnwind.py
    lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/module-end/TestNoReturnModuleEnd.py
    lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/module-end/a.s
    lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/module-end/test.core
    lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/module-end/test.out
    lldb/packages/Python/lldbsuite/test/functionalities/unwind/sigtramp/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/unwind/sigtramp/TestSigtrampUnwind.py
    lldb/packages/Python/lldbsuite/test/functionalities/unwind/sigtramp/main.c
    lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/TestStandardUnwind.py
    lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/hand_written/divmod.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/hand_written/fprintf.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/hand_written/new_delete.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/value_md5_crash/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/value_md5_crash/TestValueMD5Crash.py
    lldb/packages/Python/lldbsuite/test/functionalities/value_md5_crash/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/var_path/Makefile
    lldb/packages/Python/lldbsuite/test/functionalities/var_path/TestVarPath.py
    lldb/packages/Python/lldbsuite/test/functionalities/var_path/main.cpp
    lldb/packages/Python/lldbsuite/test/functionalities/wrong_commands/.categories
    lldb/packages/Python/lldbsuite/test/functionalities/wrong_commands/TestWrongCommands.py
    lldb/packages/Python/lldbsuite/test/iohandler/completion/TestIOHandlerCompletion.py
    lldb/packages/Python/lldbsuite/test/iohandler/completion/main.c
    lldb/packages/Python/lldbsuite/test/iohandler/unicode/TestUnicode.py
    lldb/packages/Python/lldbsuite/test/issue_verification/README.txt
    lldb/packages/Python/lldbsuite/test/issue_verification/TestExpectedTimeout.py.park
    lldb/packages/Python/lldbsuite/test/issue_verification/TestFail.py.park
    lldb/packages/Python/lldbsuite/test/issue_verification/TestInvalidDecorator.py.park
    lldb/packages/Python/lldbsuite/test/issue_verification/TestRerunFail.py.park
    lldb/packages/Python/lldbsuite/test/issue_verification/TestRerunFileLevelTimeout.py.park
    lldb/packages/Python/lldbsuite/test/issue_verification/TestRerunInline.py.park
    lldb/packages/Python/lldbsuite/test/issue_verification/TestRerunTimeout.py.park
    lldb/packages/Python/lldbsuite/test/issue_verification/TestSignal.py.park
    lldb/packages/Python/lldbsuite/test/issue_verification/TestSignalOutsideTestMethod.py.park
    lldb/packages/Python/lldbsuite/test/issue_verification/TestTimeout.py.park
    lldb/packages/Python/lldbsuite/test/issue_verification/disable.py
    lldb/packages/Python/lldbsuite/test/issue_verification/enable.py
    lldb/packages/Python/lldbsuite/test/issue_verification/inline_rerun_inferior.cpp
    lldb/packages/Python/lldbsuite/test/issue_verification/rerun_base.py
    lldb/packages/Python/lldbsuite/test/lang/c/anonymous/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/anonymous/TestAnonymous.py
    lldb/packages/Python/lldbsuite/test/lang/c/anonymous/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/array_types/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/array_types/TestArrayTypes.py
    lldb/packages/Python/lldbsuite/test/lang/c/array_types/cmds.txt
    lldb/packages/Python/lldbsuite/test/lang/c/array_types/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/bitfields/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/bitfields/TestBitfields.py
    lldb/packages/Python/lldbsuite/test/lang/c/bitfields/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/blocks/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/blocks/TestBlocks.py
    lldb/packages/Python/lldbsuite/test/lang/c/blocks/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One.mk
    lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One/One.c
    lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One/One.h
    lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One/OneConstant.c
    lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/TestConflictingSymbol.py
    lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two.mk
    lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two/Two.c
    lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two/Two.h
    lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two/TwoConstant.c
    lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/const_variables/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py
    lldb/packages/Python/lldbsuite/test/lang/c/const_variables/functions.c
    lldb/packages/Python/lldbsuite/test/lang/c/const_variables/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/enum_types/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/enum_types/TestEnumTypes.py
    lldb/packages/Python/lldbsuite/test/lang/c/enum_types/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/find_struct_type/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/find_struct_type/TestFindStructTypes.py
    lldb/packages/Python/lldbsuite/test/lang/c/find_struct_type/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/forward/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/forward/README.txt
    lldb/packages/Python/lldbsuite/test/lang/c/forward/TestForwardDeclaration.py
    lldb/packages/Python/lldbsuite/test/lang/c/forward/foo.c
    lldb/packages/Python/lldbsuite/test/lang/c/forward/foo.h
    lldb/packages/Python/lldbsuite/test/lang/c/forward/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/function_types/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/function_types/TestFunctionTypes.py
    lldb/packages/Python/lldbsuite/test/lang/c/function_types/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/global_variables/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/global_variables/TestGlobalVariables.py
    lldb/packages/Python/lldbsuite/test/lang/c/global_variables/a.c
    lldb/packages/Python/lldbsuite/test/lang/c/global_variables/cmds.txt
    lldb/packages/Python/lldbsuite/test/lang/c/global_variables/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/inlines/TestRedefinitionsInInlines.py
    lldb/packages/Python/lldbsuite/test/lang/c/inlines/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/local_types/TestUseClosestType.py
    lldb/packages/Python/lldbsuite/test/lang/c/local_types/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/local_types/other.c
    lldb/packages/Python/lldbsuite/test/lang/c/local_variables/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/local_variables/TestLocalVariables.py
    lldb/packages/Python/lldbsuite/test/lang/c/local_variables/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/modules/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/modules/TestCModules.py
    lldb/packages/Python/lldbsuite/test/lang/c/modules/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/offsetof/TestOffsetof.py
    lldb/packages/Python/lldbsuite/test/lang/c/offsetof/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/recurse/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/recurse/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/register_variables/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/register_variables/TestRegisterVariables.py
    lldb/packages/Python/lldbsuite/test/lang/c/register_variables/test.c
    lldb/packages/Python/lldbsuite/test/lang/c/set_values/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/set_values/TestSetValues.py
    lldb/packages/Python/lldbsuite/test/lang/c/set_values/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/TestSharedLib.py
    lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/foo.c
    lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/foo.h
    lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/TestSharedLibStrippedSymbols.py
    lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/foo.c
    lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/foo.h
    lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/step-target/.categories
    lldb/packages/Python/lldbsuite/test/lang/c/step-target/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/step-target/TestStepTarget.py
    lldb/packages/Python/lldbsuite/test/lang/c/step-target/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/step_over_no_deadlock/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/step_over_no_deadlock/TestStepOverDoesntBlock.py
    lldb/packages/Python/lldbsuite/test/lang/c/step_over_no_deadlock/locking.cpp
    lldb/packages/Python/lldbsuite/test/lang/c/stepping/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/stepping/TestStepAndBreakpoints.py
    lldb/packages/Python/lldbsuite/test/lang/c/stepping/TestThreadStepping.py
    lldb/packages/Python/lldbsuite/test/lang/c/stepping/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/strings/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/strings/TestCStrings.py
    lldb/packages/Python/lldbsuite/test/lang/c/strings/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/struct_types/TestStructTypes.py
    lldb/packages/Python/lldbsuite/test/lang/c/struct_types/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/TestTlsGlobals.py
    lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/a.c
    lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/typedef/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/typedef/Testtypedef.py
    lldb/packages/Python/lldbsuite/test/lang/c/typedef/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/unicode/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py
    lldb/packages/Python/lldbsuite/test/lang/c/unicode/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/unions/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/unions/TestUnionMembers.py
    lldb/packages/Python/lldbsuite/test/lang/c/unions/main.c
    lldb/packages/Python/lldbsuite/test/lang/c/vla/Makefile
    lldb/packages/Python/lldbsuite/test/lang/c/vla/TestVLA.py
    lldb/packages/Python/lldbsuite/test/lang/c/vla/main.c
    lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/TestCPPAccelerator.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/a.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/b.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/c.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/d.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/e.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/f.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/g.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/source.h
    lldb/packages/Python/lldbsuite/test/lang/cpp/auto/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/auto/TestCPPAuto.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/auto/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/bitfields/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/bitfields/TestCppBitfields.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/bitfields/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/bool/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/bool/TestCPPBool.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/bool/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/TestCPPBreakpointCommands.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/nested.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/TestBreakpointInMemberFuncWNonPrimitiveParams.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/a.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/a.h
    lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/module.modulemap
    lldb/packages/Python/lldbsuite/test/lang/cpp/call-function/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/call-function/TestCallCPPFunction.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/call-function/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/chained-calls/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/chained-calls/TestCppChainedCalls.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/chained-calls/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/.categories
    lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/TestChar1632T.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/char8_t/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/char8_t/TestCxxChar8_t.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/char8_t/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/class_static/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/class_static/TestStaticVariables.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/class_static/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/TestClassTypes.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/TestClassTypesDisassembly.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/cmds.txt
    lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/const_this/TestConstThis.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/const_this/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/constructors/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/constructors/TestCppConstructors.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/constructors/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/covariant-return-types/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/covariant-return-types/TestCovariantReturnTypes.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/covariant-return-types/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/diamond/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/diamond/TestDiamond.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/diamond/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value-same-basename/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value-same-basename/TestDynamicValueSameBase.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value-same-basename/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/TestCppValueCast.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/TestDynamicValue.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/pass-to-base.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/sbvalue-cast.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/enum_types/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/enum_types/TestCPP11EnumTypes.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/enum_types/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/exceptions/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/exceptions/exceptions.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/extern_c/TestExternCSymbols.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/extern_c/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/frame-var-anon-unions/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/frame-var-anon-unions/TestFrameVariableAnonymousUnions.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/frame-var-anon-unions/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/function-qualifiers/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/function-qualifiers/TestCppFunctionQualifiers.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/function-qualifiers/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/function-template-parameter-pack/TestFunctionTemplateParameterPack.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/function-template-parameter-pack/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/function_refs/TestFunctionRefs.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/function_refs/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/global_operators/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/global_operators/TestCppGlobalOperators.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/global_operators/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/global_variables/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/global_variables/TestCPPGlobalVariables.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/global_variables/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/TestGModules.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/a.h
    lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/b.h
    lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/memory.h
    lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/module.modulemap
    lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules/TestWithModuleDebugging.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules/pch.h
    lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/TestCppIncompleteTypes.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/a.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/a.h
    lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/length.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/length.h
    lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/inlines/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/inlines/TestInlines.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/inlines/inlines.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/inlines/inlines.h
    lldb/packages/Python/lldbsuite/test/lang/cpp/lambdas/TestLambdas.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/lambdas/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/TestWithLimitDebugInfo.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/base.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/base.h
    lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/derived.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/derived.h
    lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/llvm-style/TestLLVMStyle.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/llvm-style/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/member-and-local-vars-with-same-name/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/member-and-local-vars-with-same-name/TestMembersAndLocalsWithSameName.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/member-and-local-vars-with-same-name/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/modules-import/Inputs/Bar.h
    lldb/packages/Python/lldbsuite/test/lang/cpp/modules-import/Inputs/Foo.h
    lldb/packages/Python/lldbsuite/test/lang/cpp/modules-import/Inputs/module.modulemap
    lldb/packages/Python/lldbsuite/test/lang/cpp/modules-import/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/modules-import/TestCXXModulesImport.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/modules-import/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/multiple-inheritance/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/multiple-inheritance/TestCppMultipleInheritance.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/multiple-inheritance/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespace.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/cmds.txt
    lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/ns.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/ns.h
    lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/ns2.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/ns3.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_conflicts/TestNamespaceConflicts.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_conflicts/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/TestNamespaceDefinitions.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/a.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/b.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/foo.h
    lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/nested-class-other-compilation-unit/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/nested-class-other-compilation-unit/TestNestedClassWithParentInAnotherCU.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/nested-class-other-compilation-unit/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/nested-class-other-compilation-unit/other.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/nested-class-other-compilation-unit/shared.h
    lldb/packages/Python/lldbsuite/test/lang/cpp/nsimport/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/nsimport/TestCppNsImport.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/nsimport/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/offsetof/TestOffsetofCpp.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/offsetof/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/operator-overload/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/operator-overload/TestOperatorOverload.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/operator-overload/a.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/operator-overload/b.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/operators/TestCppOperators.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/operators/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/TestOverloadedFunctions.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/static-a.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/static-b.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/printf/TestPrintf.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/printf/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/rvalue-references/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/rvalue-references/TestRvalueReferences.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/rvalue-references/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/scope/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/scope/TestCppScope.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/scope/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/signed_types/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/signed_types/TestSignedTypes.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/signed_types/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/static_members/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/static_members/TestCPPStaticMembers.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/static_members/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/static_methods/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/static_methods/TestCPPStaticMethods.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/static_methods/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/std-function-step-into-callable/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/std-function-step-into-callable/TestStdFunctionStepIntoCallable.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/std-function-step-into-callable/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/stl/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/stl/TestSTL.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/stl/TestStdCXXDisassembly.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/stl/cmds.txt
    lldb/packages/Python/lldbsuite/test/lang/cpp/stl/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/symbols/TestSymbols.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/symbols/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/template-function/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/template-function/TestTemplateFunctions.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/template-function/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/template/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/template/TestTemplateArgs.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/template/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/this/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/this/TestCPPThis.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/this/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/thread_local/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/thread_local/TestThreadLocal.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/thread_local/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/TestTrivialABI.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/type_lookup/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/type_lookup/TestCppTypeLookup.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/type_lookup/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/TestUnicodeLiterals.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/unique-types/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/unique-types/TestUniqueTypes.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/unique-types/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/TestUnsignedTypes.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/virtual-functions/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/virtual-functions/TestCppVirtualFunctions.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/virtual-functions/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/virtual-overload/TestVirtualOverload.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/virtual-overload/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/cpp/wchar_t/.categories
    lldb/packages/Python/lldbsuite/test/lang/cpp/wchar_t/Makefile
    lldb/packages/Python/lldbsuite/test/lang/cpp/wchar_t/TestCxxWCharT.py
    lldb/packages/Python/lldbsuite/test/lang/cpp/wchar_t/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/mixed/Makefile
    lldb/packages/Python/lldbsuite/test/lang/mixed/TestMixedLanguages.py
    lldb/packages/Python/lldbsuite/test/lang/mixed/foo.cpp
    lldb/packages/Python/lldbsuite/test/lang/mixed/main.c
    lldb/packages/Python/lldbsuite/test/lang/objc/.categories
    lldb/packages/Python/lldbsuite/test/lang/objc/bitfield_ivars/TestBitfieldIvars.py
    lldb/packages/Python/lldbsuite/test/lang/objc/bitfield_ivars/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/blocks/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/blocks/TestObjCIvarsInBlocks.py
    lldb/packages/Python/lldbsuite/test/lang/objc/blocks/ivars-in-blocks.h
    lldb/packages/Python/lldbsuite/test/lang/objc/blocks/ivars-in-blocks.m
    lldb/packages/Python/lldbsuite/test/lang/objc/blocks/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Test/Foo.h
    lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Test/Test.h
    lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Test/Test.m
    lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestConflictingDefinition.py
    lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestExt/Foo.h
    lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestExt/TestExt.h
    lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestExt/TestExt.m
    lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/direct-dispatch-step/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/direct-dispatch-step/TestObjCDirectDispatchStepping.py
    lldb/packages/Python/lldbsuite/test/lang/objc/direct-dispatch-step/stepping-tests.m
    lldb/packages/Python/lldbsuite/test/lang/objc/exceptions/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/exceptions/TestObjCExceptions.py
    lldb/packages/Python/lldbsuite/test/lang/objc/exceptions/main.mm
    lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/Container.h
    lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/Container.m
    lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/TestForwardDecl.py
    lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/foundation/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestConstStrings.py
    lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestFoundationDisassembly.py
    lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods.py
    lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods2.py
    lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethodsNSArray.py
    lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethodsNSError.py
    lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethodsString.py
    lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjectDescriptionAPI.py
    lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestRuntimeTypes.py
    lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestSymbolTable.py
    lldb/packages/Python/lldbsuite/test/lang/objc/foundation/const-strings.m
    lldb/packages/Python/lldbsuite/test/lang/objc/foundation/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/foundation/my-base.h
    lldb/packages/Python/lldbsuite/test/lang/objc/foundation/my-base.m
    lldb/packages/Python/lldbsuite/test/lang/objc/global_ptrs/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/global_ptrs/TestGlobalObjects.py
    lldb/packages/Python/lldbsuite/test/lang/objc/global_ptrs/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/InternalDefiner.h
    lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/InternalDefiner.m
    lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/TestHiddenIvars.py
    lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/TestObjCiVarIMP.py
    lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/myclass.h
    lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/myclass.m
    lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/repro.m
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-app-update/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-app-update/TestClangModulesAppUpdate.py
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-app-update/foo.m
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-app-update/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-app-update/module.modulemap
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-app-update/umbrella.h
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-auto-import/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-auto-import/TestModulesAutoImport.py
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-auto-import/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/TestClangModulesCache.py
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/f.h
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/module.modulemap
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-hash-mismatch/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-hash-mismatch/TestClangModulesHashMismatch.py
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-hash-mismatch/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-hash-mismatch/other.m
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/TestIncompleteModules.py
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/minmax.h
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/module.map
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/myModule.h
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/myModule.m
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/TestModulesInlineFunctions.py
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/module.map
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/myModule.c
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/myModule.h
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-update/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-update/TestClangModulesUpdate.py
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-update/first.m
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-update/module.modulemap
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-update/second.m
    lldb/packages/Python/lldbsuite/test/lang/objc/modules-update/umbrella.h
    lldb/packages/Python/lldbsuite/test/lang/objc/modules/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/modules/TestObjCModules.py
    lldb/packages/Python/lldbsuite/test/lang/objc/modules/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/objc++/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/objc++/TestObjCXX.py
    lldb/packages/Python/lldbsuite/test/lang/objc/objc++/main.mm
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-baseclass-sbtype/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-baseclass-sbtype/TestObjCBaseClassSBType.py
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-baseclass-sbtype/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-builtin-types/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-builtin-types/TestObjCBuiltinTypes.py
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-builtin-types/main.cpp
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-checker/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-checker/TestObjCCheckers.py
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-checker/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-class-method/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-class-method/TestObjCClassMethod.py
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-class-method/class.m
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/.categories
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/TestObjCDynamicSBType.py
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-dynamic-value/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-dynamic-value/TestObjCDynamicValue.py
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-dynamic-value/dynamic-value.m
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-foundation-dictionary-empty/TestNSDictionary0.py
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-foundation-dictionary-empty/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/TestObjCIvarOffsets.py
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/objc-ivar-offsets.h
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/objc-ivar-offsets.m
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-protocols/TestIvarProtocols.py
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-protocols/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-stripped/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-stripped/TestObjCIvarStripped.py
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-stripped/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/ObjCNewSyntaxTest.py
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/TestObjCNewSyntaxArray.py
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/TestObjCNewSyntaxDictionary.py
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/TestObjCNewSyntaxLiteral.py
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-optimized/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-optimized/TestObjcOptimized.py
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-optimized/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-property/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-property/TestObjCProperty.py
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-property/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-runtime-ivars/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-runtime-ivars/TestRuntimeIvars.py
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-runtime-ivars/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/TestObjCStaticMethodStripped.py
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/static.m
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method/TestObjCStaticMethod.py
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method/static.m
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-stepping/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-stepping/TestObjCStepping.py
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-stepping/stepping-tests.m
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-argument/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-argument/TestObjCStructArgument.py
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-argument/test.m
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-return/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-return/TestObjCStructReturn.py
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-return/test.m
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-super/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-super/TestObjCSuper.py
    lldb/packages/Python/lldbsuite/test/lang/objc/objc-super/class.m
    lldb/packages/Python/lldbsuite/test/lang/objc/objc_direct-methods/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/objc_direct-methods/TestObjCDirectMethods.py
    lldb/packages/Python/lldbsuite/test/lang/objc/objc_direct-methods/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/orderedset/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/orderedset/TestOrderedSet.py
    lldb/packages/Python/lldbsuite/test/lang/objc/orderedset/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/print-obj/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/print-obj/TestPrintObj.py
    lldb/packages/Python/lldbsuite/test/lang/objc/print-obj/blocked.m
    lldb/packages/Python/lldbsuite/test/lang/objc/ptr_refs/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/ptr_refs/TestPtrRefsObjC.py
    lldb/packages/Python/lldbsuite/test/lang/objc/ptr_refs/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/radar-9691614/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/radar-9691614/TestObjCMethodReturningBOOL.py
    lldb/packages/Python/lldbsuite/test/lang/objc/radar-9691614/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/rdar-10967107/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/rdar-10967107/TestRdar10967107.py
    lldb/packages/Python/lldbsuite/test/lang/objc/rdar-10967107/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/rdar-11355592/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/rdar-11355592/TestRdar11355592.py
    lldb/packages/Python/lldbsuite/test/lang/objc/rdar-11355592/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/TestRdar12408181.py
    lldb/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/Bar.h
    lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/Bar.m
    lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/Foo.h
    lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/Foo.m
    lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/TestRealDefinition.py
    lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/sample/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/sample/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/self/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/self/TestObjCSelf.py
    lldb/packages/Python/lldbsuite/test/lang/objc/self/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/single-entry-dictionary/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objc/single-entry-dictionary/TestObjCSingleEntryDictionary.py
    lldb/packages/Python/lldbsuite/test/lang/objc/single-entry-dictionary/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/unicode-string/TestUnicodeString.py
    lldb/packages/Python/lldbsuite/test/lang/objc/unicode-string/main.m
    lldb/packages/Python/lldbsuite/test/lang/objc/variadic_methods/TestVariadicMethods.py
    lldb/packages/Python/lldbsuite/test/lang/objc/variadic_methods/main.m
    lldb/packages/Python/lldbsuite/test/lang/objcxx/class-name-clash/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objcxx/class-name-clash/TestNameClash.py
    lldb/packages/Python/lldbsuite/test/lang/objcxx/class-name-clash/main.mm
    lldb/packages/Python/lldbsuite/test/lang/objcxx/class-name-clash/myobject.mm
    lldb/packages/Python/lldbsuite/test/lang/objcxx/cxx-bridged-po/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objcxx/cxx-bridged-po/TestObjCXXBridgedPO.py
    lldb/packages/Python/lldbsuite/test/lang/objcxx/cxx-bridged-po/main.mm
    lldb/packages/Python/lldbsuite/test/lang/objcxx/hide-runtime-values/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objcxx/hide-runtime-values/TestObjCXXHideRuntimeValues.py
    lldb/packages/Python/lldbsuite/test/lang/objcxx/hide-runtime-values/main.mm
    lldb/packages/Python/lldbsuite/test/lang/objcxx/objcxx-ivar-vector/TestIvarVector.py
    lldb/packages/Python/lldbsuite/test/lang/objcxx/objcxx-ivar-vector/main.mm
    lldb/packages/Python/lldbsuite/test/lang/objcxx/sample/Makefile
    lldb/packages/Python/lldbsuite/test/lang/objcxx/sample/main.mm
    lldb/packages/Python/lldbsuite/test/linux/add-symbols/Makefile
    lldb/packages/Python/lldbsuite/test/linux/add-symbols/TestTargetSymbolsAddCommand.py
    lldb/packages/Python/lldbsuite/test/linux/add-symbols/main.c
    lldb/packages/Python/lldbsuite/test/linux/builtin_trap/Makefile
    lldb/packages/Python/lldbsuite/test/linux/builtin_trap/TestBuiltinTrap.py
    lldb/packages/Python/lldbsuite/test/linux/builtin_trap/main.cpp
    lldb/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/Makefile
    lldb/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/TestMixedDwarfBinary.py
    lldb/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/a.c
    lldb/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/b.c
    lldb/packages/Python/lldbsuite/test/linux/sepdebugsymlink/Makefile
    lldb/packages/Python/lldbsuite/test/linux/sepdebugsymlink/TestTargetSymbolsSepDebugSymlink.py
    lldb/packages/Python/lldbsuite/test/linux/sepdebugsymlink/main.c
    lldb/packages/Python/lldbsuite/test/linux/thread/create_during_instruction_step/Makefile
    lldb/packages/Python/lldbsuite/test/linux/thread/create_during_instruction_step/TestCreateDuringInstructionStep.py
    lldb/packages/Python/lldbsuite/test/linux/thread/create_during_instruction_step/main.cpp
    lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/Inputs/main.c
    lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/Inputs/relative.c
    lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/Makefile
    lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/TestDSYMSourcePathRemapping.py
    lldb/packages/Python/lldbsuite/test/macosx/add-dsym/Makefile
    lldb/packages/Python/lldbsuite/test/macosx/add-dsym/TestAddDsymMidExecutionCommand.py
    lldb/packages/Python/lldbsuite/test/macosx/add-dsym/main.c
    lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/Makefile
    lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/TestDuplicateMembers.py
    lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/a.c
    lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/main.c
    lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/sub1/a.c
    lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile
    lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/TestApp.app/Contents/Info.plist
    lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/TestApp.app/Contents/MacOS/.empty
    lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/TestApp.app/Contents/Resources/.empty
    lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/TestFindAppInBundle.py
    lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/main.c
    lldb/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/Makefile
    lldb/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/TestBundleWithDotInFilename.py
    lldb/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/bundle.c
    lldb/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/main.c
    lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/Info.plist
    lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/Makefile
    lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/MyFramework.h
    lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/TestDeepBundle.py
    lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/main.c
    lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/myframework.c
    lldb/packages/Python/lldbsuite/test/macosx/function-starts/Makefile
    lldb/packages/Python/lldbsuite/test/macosx/function-starts/TestFunctionStarts.py
    lldb/packages/Python/lldbsuite/test/macosx/function-starts/main.cpp
    lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/Makefile
    lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/TestIndirectSymbols.py
    lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/alias.list
    lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/indirect.c
    lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/main.c
    lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/reexport.c
    lldb/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/Makefile
    lldb/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/TestKernVerStrLCNOTE.py
    lldb/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/create-empty-corefile.cpp
    lldb/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/main.c
    lldb/packages/Python/lldbsuite/test/macosx/load-kext/TestLoadKext.py
    lldb/packages/Python/lldbsuite/test/macosx/load-kext/mykext.yaml
    lldb/packages/Python/lldbsuite/test/macosx/macabi/Makefile
    lldb/packages/Python/lldbsuite/test/macosx/macabi/TestMacABImacOSFramework.py
    lldb/packages/Python/lldbsuite/test/macosx/macabi/foo.c
    lldb/packages/Python/lldbsuite/test/macosx/macabi/foo.h
    lldb/packages/Python/lldbsuite/test/macosx/macabi/main.c
    lldb/packages/Python/lldbsuite/test/macosx/nslog/Makefile
    lldb/packages/Python/lldbsuite/test/macosx/nslog/TestDarwinNSLogOutput.py
    lldb/packages/Python/lldbsuite/test/macosx/nslog/main.m
    lldb/packages/Python/lldbsuite/test/macosx/order/Makefile
    lldb/packages/Python/lldbsuite/test/macosx/order/TestOrderFile.py
    lldb/packages/Python/lldbsuite/test/macosx/order/cmds.txt
    lldb/packages/Python/lldbsuite/test/macosx/order/main.c
    lldb/packages/Python/lldbsuite/test/macosx/order/order-file
    lldb/packages/Python/lldbsuite/test/macosx/queues/Makefile
    lldb/packages/Python/lldbsuite/test/macosx/queues/TestQueues.py
    lldb/packages/Python/lldbsuite/test/macosx/queues/main.c
    lldb/packages/Python/lldbsuite/test/macosx/safe-to-func-call/Makefile
    lldb/packages/Python/lldbsuite/test/macosx/safe-to-func-call/TestSafeFuncCalls.py
    lldb/packages/Python/lldbsuite/test/macosx/safe-to-func-call/main.c
    lldb/packages/Python/lldbsuite/test/macosx/thread-names/Makefile
    lldb/packages/Python/lldbsuite/test/macosx/thread-names/TestInterruptThreadNames.py
    lldb/packages/Python/lldbsuite/test/macosx/thread-names/main.c
    lldb/packages/Python/lldbsuite/test/macosx/universal/Makefile
    lldb/packages/Python/lldbsuite/test/macosx/universal/TestUniversal.py
    lldb/packages/Python/lldbsuite/test/macosx/universal/main.c
    lldb/packages/Python/lldbsuite/test/macosx/version_zero/TestGetVersionZeroVersion.py
    lldb/packages/Python/lldbsuite/test/macosx/version_zero/libDylib.dylib.yaml
    lldb/packages/Python/lldbsuite/test/python_api/.categories
    lldb/packages/Python/lldbsuite/test/python_api/breakpoint/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/breakpoint/TestBreakpointAPI.py
    lldb/packages/Python/lldbsuite/test/python_api/breakpoint/main.c
    lldb/packages/Python/lldbsuite/test/python_api/class_members/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/class_members/TestSBTypeClassMembers.py
    lldb/packages/Python/lldbsuite/test/python_api/class_members/main.mm
    lldb/packages/Python/lldbsuite/test/python_api/debugger/TestDebuggerAPI.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_address.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_block.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_breakpoint.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_breakpointlocation.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_breakpointname.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_broadcaster.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_communication.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_compileunit.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_debugger.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_error.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_event.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_filespec.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_frame.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_function.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_instruction.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_instructionlist.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_lineentry.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_listener.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_module.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_process.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_process_info.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_section.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_stringlist.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_symbol.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_symbolcontext.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_target.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_thread.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_type.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_value.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_valuelist.py
    lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_watchpoint.py
    lldb/packages/Python/lldbsuite/test/python_api/disassemble-raw-data/TestDisassembleRawData.py
    lldb/packages/Python/lldbsuite/test/python_api/disassemble-raw-data/TestDisassemble_VST1_64.py
    lldb/packages/Python/lldbsuite/test/python_api/event/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/event/TestEvents.py
    lldb/packages/Python/lldbsuite/test/python_api/event/main.c
    lldb/packages/Python/lldbsuite/test/python_api/exprpath_synthetic/TestExprPathSynthetic.py
    lldb/packages/Python/lldbsuite/test/python_api/exprpath_synthetic/main.mm
    lldb/packages/Python/lldbsuite/test/python_api/file_handle/TestFileHandle.py
    lldb/packages/Python/lldbsuite/test/python_api/findvalue_duplist/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/findvalue_duplist/TestSBFrameFindValue.py
    lldb/packages/Python/lldbsuite/test/python_api/findvalue_duplist/main.cpp
    lldb/packages/Python/lldbsuite/test/python_api/formatters/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/formatters/TestFormattersSBAPI.py
    lldb/packages/Python/lldbsuite/test/python_api/formatters/main.cpp
    lldb/packages/Python/lldbsuite/test/python_api/formatters/synth.py
    lldb/packages/Python/lldbsuite/test/python_api/frame/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/frame/TestFrames.py
    lldb/packages/Python/lldbsuite/test/python_api/frame/get-variables/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/frame/get-variables/TestGetVariables.py
    lldb/packages/Python/lldbsuite/test/python_api/frame/get-variables/main.c
    lldb/packages/Python/lldbsuite/test/python_api/frame/inlines/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/frame/inlines/TestInlinedFrame.py
    lldb/packages/Python/lldbsuite/test/python_api/frame/inlines/inlines.c
    lldb/packages/Python/lldbsuite/test/python_api/frame/inlines/inlines.h
    lldb/packages/Python/lldbsuite/test/python_api/frame/main.c
    lldb/packages/Python/lldbsuite/test/python_api/function_symbol/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/function_symbol/TestDisasmAPI.py
    lldb/packages/Python/lldbsuite/test/python_api/function_symbol/TestSymbolAPI.py
    lldb/packages/Python/lldbsuite/test/python_api/function_symbol/main.c
    lldb/packages/Python/lldbsuite/test/python_api/get-value-32bit-int/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/get-value-32bit-int/TestGetValue32BitInt.py
    lldb/packages/Python/lldbsuite/test/python_api/get-value-32bit-int/main.cpp
    lldb/packages/Python/lldbsuite/test/python_api/hello_world/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/hello_world/TestHelloWorld.py
    lldb/packages/Python/lldbsuite/test/python_api/hello_world/main.c
    lldb/packages/Python/lldbsuite/test/python_api/interpreter/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/interpreter/TestCommandInterpreterAPI.py
    lldb/packages/Python/lldbsuite/test/python_api/interpreter/TestRunCommandInterpreterAPI.py
    lldb/packages/Python/lldbsuite/test/python_api/interpreter/main.c
    lldb/packages/Python/lldbsuite/test/python_api/lldbutil/TestSwigVersion.py
    lldb/packages/Python/lldbsuite/test/python_api/lldbutil/frame/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/lldbutil/frame/TestFrameUtils.py
    lldb/packages/Python/lldbsuite/test/python_api/lldbutil/frame/main.c
    lldb/packages/Python/lldbsuite/test/python_api/lldbutil/iter/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/lldbutil/iter/TestLLDBIterator.py
    lldb/packages/Python/lldbsuite/test/python_api/lldbutil/iter/TestRegistersIterator.py
    lldb/packages/Python/lldbsuite/test/python_api/lldbutil/iter/main.cpp
    lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/TestPrintStackTraces.py
    lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/main.cpp
    lldb/packages/Python/lldbsuite/test/python_api/module_section/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/module_section/TestModuleAndSection.py
    lldb/packages/Python/lldbsuite/test/python_api/module_section/b.cpp
    lldb/packages/Python/lldbsuite/test/python_api/module_section/c.cpp
    lldb/packages/Python/lldbsuite/test/python_api/module_section/main.cpp
    lldb/packages/Python/lldbsuite/test/python_api/name_lookup/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/name_lookup/TestNameLookup.py
    lldb/packages/Python/lldbsuite/test/python_api/name_lookup/main.cpp
    lldb/packages/Python/lldbsuite/test/python_api/objc_type/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/objc_type/TestObjCType.py
    lldb/packages/Python/lldbsuite/test/python_api/objc_type/main.m
    lldb/packages/Python/lldbsuite/test/python_api/process/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/process/TestProcessAPI.py
    lldb/packages/Python/lldbsuite/test/python_api/process/io/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/process/io/TestProcessIO.py
    lldb/packages/Python/lldbsuite/test/python_api/process/io/main.c
    lldb/packages/Python/lldbsuite/test/python_api/process/main.cpp
    lldb/packages/Python/lldbsuite/test/python_api/process/read-mem-cstring/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/process/read-mem-cstring/TestReadMemCString.py
    lldb/packages/Python/lldbsuite/test/python_api/process/read-mem-cstring/main.c
    lldb/packages/Python/lldbsuite/test/python_api/sbdata/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/sbdata/TestSBData.py
    lldb/packages/Python/lldbsuite/test/python_api/sbdata/main.cpp
    lldb/packages/Python/lldbsuite/test/python_api/sblaunchinfo/TestSBLaunchInfo.py
    lldb/packages/Python/lldbsuite/test/python_api/sbstructureddata/TestStructuredDataAPI.py
    lldb/packages/Python/lldbsuite/test/python_api/sbtype_typeclass/TestSBTypeTypeClass.py
    lldb/packages/Python/lldbsuite/test/python_api/sbtype_typeclass/main.m
    lldb/packages/Python/lldbsuite/test/python_api/sbvalue_const_addrof/TestSBValueConstAddrOf.py
    lldb/packages/Python/lldbsuite/test/python_api/sbvalue_const_addrof/main.cpp
    lldb/packages/Python/lldbsuite/test/python_api/sbvalue_persist/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/sbvalue_persist/TestSBValuePersist.py
    lldb/packages/Python/lldbsuite/test/python_api/sbvalue_persist/main.cpp
    lldb/packages/Python/lldbsuite/test/python_api/section/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/section/TestSectionAPI.py
    lldb/packages/Python/lldbsuite/test/python_api/section/main.c
    lldb/packages/Python/lldbsuite/test/python_api/signals/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/signals/TestSignalsAPI.py
    lldb/packages/Python/lldbsuite/test/python_api/signals/main.cpp
    lldb/packages/Python/lldbsuite/test/python_api/symbol-context/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/symbol-context/TestSymbolContext.py
    lldb/packages/Python/lldbsuite/test/python_api/symbol-context/main.c
    lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/TestSymbolContextTwoFiles.py
    lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/decls.h
    lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/file1.cpp
    lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/file2.cpp
    lldb/packages/Python/lldbsuite/test/python_api/target/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/target/TestTargetAPI.py
    lldb/packages/Python/lldbsuite/test/python_api/target/main.c
    lldb/packages/Python/lldbsuite/test/python_api/thread/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/thread/TestThreadAPI.py
    lldb/packages/Python/lldbsuite/test/python_api/thread/main.cpp
    lldb/packages/Python/lldbsuite/test/python_api/thread/main2.cpp
    lldb/packages/Python/lldbsuite/test/python_api/type/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/type/TestTypeList.py
    lldb/packages/Python/lldbsuite/test/python_api/type/main.cpp
    lldb/packages/Python/lldbsuite/test/python_api/value/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/value/TestValueAPI.py
    lldb/packages/Python/lldbsuite/test/python_api/value/change_values/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/value/change_values/TestChangeValueAPI.py
    lldb/packages/Python/lldbsuite/test/python_api/value/change_values/main.c
    lldb/packages/Python/lldbsuite/test/python_api/value/empty_class/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/value/empty_class/TestValueAPIEmptyClass.py
    lldb/packages/Python/lldbsuite/test/python_api/value/empty_class/main.cpp
    lldb/packages/Python/lldbsuite/test/python_api/value/linked_list/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/value/linked_list/TestValueAPILinkedList.py
    lldb/packages/Python/lldbsuite/test/python_api/value/linked_list/main.cpp
    lldb/packages/Python/lldbsuite/test/python_api/value/main.c
    lldb/packages/Python/lldbsuite/test/python_api/value_var_update/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/value_var_update/TestValueVarUpdate.py
    lldb/packages/Python/lldbsuite/test/python_api/value_var_update/main.c
    lldb/packages/Python/lldbsuite/test/python_api/watchpoint/.categories
    lldb/packages/Python/lldbsuite/test/python_api/watchpoint/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/watchpoint/TestSetWatchpoint.py
    lldb/packages/Python/lldbsuite/test/python_api/watchpoint/TestWatchpointIgnoreCount.py
    lldb/packages/Python/lldbsuite/test/python_api/watchpoint/TestWatchpointIter.py
    lldb/packages/Python/lldbsuite/test/python_api/watchpoint/condition/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py
    lldb/packages/Python/lldbsuite/test/python_api/watchpoint/condition/main.cpp
    lldb/packages/Python/lldbsuite/test/python_api/watchpoint/main.c
    lldb/packages/Python/lldbsuite/test/python_api/watchpoint/watchlocation/Makefile
    lldb/packages/Python/lldbsuite/test/python_api/watchpoint/watchlocation/TestSetWatchlocation.py
    lldb/packages/Python/lldbsuite/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py
    lldb/packages/Python/lldbsuite/test/python_api/watchpoint/watchlocation/main.cpp
    lldb/packages/Python/lldbsuite/test/sample_test/Makefile
    lldb/packages/Python/lldbsuite/test/sample_test/TestSampleInlineTest.py
    lldb/packages/Python/lldbsuite/test/sample_test/TestSampleTest.py
    lldb/packages/Python/lldbsuite/test/sample_test/main.c
    lldb/packages/Python/lldbsuite/test/sanity/TestModuleCacheSanity.py
    lldb/packages/Python/lldbsuite/test/source-manager/Makefile
    lldb/packages/Python/lldbsuite/test/source-manager/TestSourceManager.py
    lldb/packages/Python/lldbsuite/test/source-manager/hidden/.keep
    lldb/packages/Python/lldbsuite/test/source-manager/main.c
    lldb/packages/Python/lldbsuite/test/terminal/TestEditline.py
    lldb/packages/Python/lldbsuite/test/terminal/TestSTTYBeforeAndAfter.py
    lldb/packages/Python/lldbsuite/test/test_runner/test/__init__.py
    lldb/packages/Python/lldbsuite/test/test_runner/test/inferior.py
    lldb/packages/Python/lldbsuite/test/test_runner/test/test_process_control.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/.clang-format
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/Makefile
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestAppleSimulatorOSType.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteAttach.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteAuxvSupport.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteExitCode.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteExpeditedRegisters.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteHostInfo.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteKill.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteModuleInfo.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteProcessInfo.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteRegisterState.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteSingleStep.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteThreadsInStopReply.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemote_qThreadStopInfo.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemote_vCont.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemote_vContThreads.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestLldbGdbServer.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/commandline/TestStubReverseConnect.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/commandline/TestStubSetSID.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/Makefile
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/TestGdbRemoteAbort.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/TestGdbRemoteSegFault.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/main.cpp
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/Makefile
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/TestGdbRemoteLibrariesSvr4Support.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/main.cpp
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/svr4lib_a.cpp
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/svr4lib_b_quote.cpp
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/main.cpp
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/platform-process-connect/Makefile
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/platform-process-connect/TestPlatformProcessConnect.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/platform-process-connect/main.cpp
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/register-reading/Makefile
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/register-reading/TestGdbRemoteGPacket.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/register-reading/main.cpp
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/signal-filtering/Makefile
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/signal-filtering/TestGdbRemote_QPassSignals.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/signal-filtering/main.cpp
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/test/test_lldbgdbserverutils.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/thread-name/Makefile
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/thread-name/TestGdbRemoteThreadName.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-server/thread-name/main.cpp
    lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/.categories
    lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/Makefile
    lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/TestVSCode_attach.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/main.c
    lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/Makefile
    lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setBreakpoints.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setExceptionBreakpoints.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setFunctionBreakpoints.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/main.cpp
    lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/completions/Makefile
    lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/completions/TestVSCode_completions.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/completions/main.cpp
    lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/Makefile
    lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/TestVSCode_launch.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/main.c
    lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/Makefile
    lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/TestVSCode_stackTrace.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/main.c
    lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/step/Makefile
    lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/step/TestVSCode_step.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/step/main.cpp
    lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/variables/Makefile
    lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/variables/TestVSCode_variables.py
    lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/variables/main.cpp
    lldb/packages/Python/lldbsuite/test/types/AbstractBase.py
    lldb/packages/Python/lldbsuite/test/types/HideTestFailures.py
    lldb/packages/Python/lldbsuite/test/types/Makefile
    lldb/packages/Python/lldbsuite/test/types/TestCharType.py
    lldb/packages/Python/lldbsuite/test/types/TestCharTypeExpr.py
    lldb/packages/Python/lldbsuite/test/types/TestDoubleTypes.py
    lldb/packages/Python/lldbsuite/test/types/TestDoubleTypesExpr.py
    lldb/packages/Python/lldbsuite/test/types/TestFloatTypes.py
    lldb/packages/Python/lldbsuite/test/types/TestFloatTypesExpr.py
    lldb/packages/Python/lldbsuite/test/types/TestIntegerType.py
    lldb/packages/Python/lldbsuite/test/types/TestIntegerTypeExpr.py
    lldb/packages/Python/lldbsuite/test/types/TestLongTypes.py
    lldb/packages/Python/lldbsuite/test/types/TestLongTypesExpr.py
    lldb/packages/Python/lldbsuite/test/types/TestRecursiveTypes.py
    lldb/packages/Python/lldbsuite/test/types/TestShortType.py
    lldb/packages/Python/lldbsuite/test/types/TestShortTypeExpr.py
    lldb/packages/Python/lldbsuite/test/types/basic_type.cpp
    lldb/packages/Python/lldbsuite/test/types/char.cpp
    lldb/packages/Python/lldbsuite/test/types/double.cpp
    lldb/packages/Python/lldbsuite/test/types/float.cpp
    lldb/packages/Python/lldbsuite/test/types/int.cpp
    lldb/packages/Python/lldbsuite/test/types/long.cpp
    lldb/packages/Python/lldbsuite/test/types/long_long.cpp
    lldb/packages/Python/lldbsuite/test/types/recursive_type_1.cpp
    lldb/packages/Python/lldbsuite/test/types/recursive_type_2.cpp
    lldb/packages/Python/lldbsuite/test/types/recursive_type_main.cpp
    lldb/packages/Python/lldbsuite/test/types/short.cpp
    lldb/packages/Python/lldbsuite/test/types/unsigned_char.cpp
    lldb/packages/Python/lldbsuite/test/types/unsigned_int.cpp
    lldb/packages/Python/lldbsuite/test/types/unsigned_long.cpp
    lldb/packages/Python/lldbsuite/test/types/unsigned_long_long.cpp
    lldb/packages/Python/lldbsuite/test/types/unsigned_short.cpp
    lldb/test/API/testcases


################################################################################
diff  --git a/lldb/packages/Python/lldbsuite/__init__.py b/lldb/packages/Python/lldbsuite/__init__.py
index 9efa05c7f454..195b2683f7b4 100644
--- a/lldb/packages/Python/lldbsuite/__init__.py
+++ b/lldb/packages/Python/lldbsuite/__init__.py
@@ -22,11 +22,4 @@ def find_lldb_root():
 
 # lldbsuite.lldb_test_src_root refers to the root of the python test case tree
 # (i.e. the actual unit tests).
-lldb_test_root = os.path.join(
-    lldb_root,
-    "packages",
-    "Python",
-    "lldbsuite",
-    "test")
-# TODO(rupprecht): update the above definition after moving test cases:
-# lldb_test_root = os.path.join(lldb_root, "test", "API")
+lldb_test_root = os.path.join(lldb_root, "test", "API")

diff  --git a/lldb/packages/Python/lldbsuite/test/android/platform/Makefile b/lldb/test/API/android/platform/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/android/platform/Makefile
rename to lldb/test/API/android/platform/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/android/platform/TestDefaultCacheLineSize.py b/lldb/test/API/android/platform/TestDefaultCacheLineSize.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/android/platform/TestDefaultCacheLineSize.py
rename to lldb/test/API/android/platform/TestDefaultCacheLineSize.py

diff  --git a/lldb/packages/Python/lldbsuite/test/android/platform/main.cpp b/lldb/test/API/android/platform/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/android/platform/main.cpp
rename to lldb/test/API/android/platform/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/api/check_public_api_headers/Makefile b/lldb/test/API/api/check_public_api_headers/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/check_public_api_headers/Makefile
rename to lldb/test/API/api/check_public_api_headers/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/api/check_public_api_headers/TestPublicAPIHeaders.py b/lldb/test/API/api/check_public_api_headers/TestPublicAPIHeaders.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/check_public_api_headers/TestPublicAPIHeaders.py
rename to lldb/test/API/api/check_public_api_headers/TestPublicAPIHeaders.py

diff  --git a/lldb/packages/Python/lldbsuite/test/api/check_public_api_headers/main.cpp.template b/lldb/test/API/api/check_public_api_headers/main.cpp.template
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/check_public_api_headers/main.cpp.template
rename to lldb/test/API/api/check_public_api_headers/main.cpp.template

diff  --git a/lldb/packages/Python/lldbsuite/test/api/command-return-object/Makefile b/lldb/test/API/api/command-return-object/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/command-return-object/Makefile
rename to lldb/test/API/api/command-return-object/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/api/command-return-object/TestSBCommandReturnObject.py b/lldb/test/API/api/command-return-object/TestSBCommandReturnObject.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/command-return-object/TestSBCommandReturnObject.py
rename to lldb/test/API/api/command-return-object/TestSBCommandReturnObject.py

diff  --git a/lldb/packages/Python/lldbsuite/test/api/command-return-object/main.cpp b/lldb/test/API/api/command-return-object/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/command-return-object/main.cpp
rename to lldb/test/API/api/command-return-object/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/api/listeners/Makefile b/lldb/test/API/api/listeners/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/listeners/Makefile
rename to lldb/test/API/api/listeners/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/api/listeners/TestListener.py b/lldb/test/API/api/listeners/TestListener.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/listeners/TestListener.py
rename to lldb/test/API/api/listeners/TestListener.py

diff  --git a/lldb/packages/Python/lldbsuite/test/api/listeners/main.c b/lldb/test/API/api/listeners/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/listeners/main.c
rename to lldb/test/API/api/listeners/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/api/log/TestAPILog.py b/lldb/test/API/api/log/TestAPILog.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/log/TestAPILog.py
rename to lldb/test/API/api/log/TestAPILog.py

diff  --git a/lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/.categories b/lldb/test/API/api/multiple-debuggers/.categories
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/.categories
rename to lldb/test/API/api/multiple-debuggers/.categories

diff  --git a/lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/Makefile b/lldb/test/API/api/multiple-debuggers/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/Makefile
rename to lldb/test/API/api/multiple-debuggers/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/TestMultipleDebuggers.py b/lldb/test/API/api/multiple-debuggers/TestMultipleDebuggers.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/TestMultipleDebuggers.py
rename to lldb/test/API/api/multiple-debuggers/TestMultipleDebuggers.py

diff  --git a/lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/multi-process-driver.cpp b/lldb/test/API/api/multiple-debuggers/multi-process-driver.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/multi-process-driver.cpp
rename to lldb/test/API/api/multiple-debuggers/multi-process-driver.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/testprog.cpp b/lldb/test/API/api/multiple-debuggers/testprog.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/testprog.cpp
rename to lldb/test/API/api/multiple-debuggers/testprog.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/api/multiple-targets/Makefile b/lldb/test/API/api/multiple-targets/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/multiple-targets/Makefile
rename to lldb/test/API/api/multiple-targets/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/api/multiple-targets/TestMultipleTargets.py b/lldb/test/API/api/multiple-targets/TestMultipleTargets.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/multiple-targets/TestMultipleTargets.py
rename to lldb/test/API/api/multiple-targets/TestMultipleTargets.py

diff  --git a/lldb/packages/Python/lldbsuite/test/api/multiple-targets/main.cpp b/lldb/test/API/api/multiple-targets/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/multiple-targets/main.cpp
rename to lldb/test/API/api/multiple-targets/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/api/multithreaded/Makefile b/lldb/test/API/api/multithreaded/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/multithreaded/Makefile
rename to lldb/test/API/api/multithreaded/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/api/multithreaded/TestMultithreaded.py b/lldb/test/API/api/multithreaded/TestMultithreaded.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/multithreaded/TestMultithreaded.py
rename to lldb/test/API/api/multithreaded/TestMultithreaded.py

diff  --git a/lldb/packages/Python/lldbsuite/test/api/multithreaded/common.h b/lldb/test/API/api/multithreaded/common.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/multithreaded/common.h
rename to lldb/test/API/api/multithreaded/common.h

diff  --git a/lldb/packages/Python/lldbsuite/test/api/multithreaded/driver.cpp.template b/lldb/test/API/api/multithreaded/driver.cpp.template
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/multithreaded/driver.cpp.template
rename to lldb/test/API/api/multithreaded/driver.cpp.template

diff  --git a/lldb/packages/Python/lldbsuite/test/api/multithreaded/inferior.cpp b/lldb/test/API/api/multithreaded/inferior.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/multithreaded/inferior.cpp
rename to lldb/test/API/api/multithreaded/inferior.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/api/multithreaded/listener_test.cpp.template b/lldb/test/API/api/multithreaded/listener_test.cpp.template
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/multithreaded/listener_test.cpp.template
rename to lldb/test/API/api/multithreaded/listener_test.cpp.template

diff  --git a/lldb/packages/Python/lldbsuite/test/api/multithreaded/test_breakpoint_callback.cpp.template b/lldb/test/API/api/multithreaded/test_breakpoint_callback.cpp.template
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/multithreaded/test_breakpoint_callback.cpp.template
rename to lldb/test/API/api/multithreaded/test_breakpoint_callback.cpp.template

diff  --git a/lldb/packages/Python/lldbsuite/test/api/multithreaded/test_listener_event_description.cpp.template b/lldb/test/API/api/multithreaded/test_listener_event_description.cpp.template
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/multithreaded/test_listener_event_description.cpp.template
rename to lldb/test/API/api/multithreaded/test_listener_event_description.cpp.template

diff  --git a/lldb/packages/Python/lldbsuite/test/api/multithreaded/test_listener_event_process_state.cpp.template b/lldb/test/API/api/multithreaded/test_listener_event_process_state.cpp.template
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/multithreaded/test_listener_event_process_state.cpp.template
rename to lldb/test/API/api/multithreaded/test_listener_event_process_state.cpp.template

diff  --git a/lldb/packages/Python/lldbsuite/test/api/multithreaded/test_listener_resume.cpp.template b/lldb/test/API/api/multithreaded/test_listener_resume.cpp.template
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/api/multithreaded/test_listener_resume.cpp.template
rename to lldb/test/API/api/multithreaded/test_listener_resume.cpp.template

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/breakpoint-it/Makefile b/lldb/test/API/arm/breakpoint-it/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/breakpoint-it/Makefile
rename to lldb/test/API/arm/breakpoint-it/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/breakpoint-it/TestBreakpointIt.py b/lldb/test/API/arm/breakpoint-it/TestBreakpointIt.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/breakpoint-it/TestBreakpointIt.py
rename to lldb/test/API/arm/breakpoint-it/TestBreakpointIt.py

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/breakpoint-it/main.c b/lldb/test/API/arm/breakpoint-it/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/breakpoint-it/main.c
rename to lldb/test/API/arm/breakpoint-it/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/Makefile b/lldb/test/API/arm/breakpoint-thumb-codesection/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/Makefile
rename to lldb/test/API/arm/breakpoint-thumb-codesection/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/TestBreakpointThumbCodesection.py b/lldb/test/API/arm/breakpoint-thumb-codesection/TestBreakpointThumbCodesection.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/TestBreakpointThumbCodesection.py
rename to lldb/test/API/arm/breakpoint-thumb-codesection/TestBreakpointThumbCodesection.py

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/main.c b/lldb/test/API/arm/breakpoint-thumb-codesection/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/main.c
rename to lldb/test/API/arm/breakpoint-thumb-codesection/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/TestEmulations.py b/lldb/test/API/arm/emulation/TestEmulations.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/TestEmulations.py
rename to lldb/test/API/arm/emulation/TestEmulations.py

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-1-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-add-1-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-1-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-add-1-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-1-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-add-1-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-1-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-add-1-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-10-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-add-10-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-10-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-add-10-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-11-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-add-11-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-11-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-add-11-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-12-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-add-12-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-12-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-add-12-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-2-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-add-2-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-2-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-add-2-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-2-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-add-2-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-2-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-add-2-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-3-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-add-3-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-3-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-add-3-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-3-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-add-3-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-3-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-add-3-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-4-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-add-4-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-4-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-add-4-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-4-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-add-4-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-4-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-add-4-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-5-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-add-5-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-5-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-add-5-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-5-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-add-5-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-5-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-add-5-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-6-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-add-6-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-6-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-add-6-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-6-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-add-6-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-6-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-add-6-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-7-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-add-7-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-7-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-add-7-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-7-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-add-7-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-7-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-add-7-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-8-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-add-8-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-8-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-add-8-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-8-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-add-8-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-8-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-add-8-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-9-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-add-9-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-9-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-add-9-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-bic-1-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-bic-1-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-bic-1-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-bic-1-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-bic-1-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-bic-1-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-bic-1-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-bic-1-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-1-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldmia-1-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-1-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldmia-1-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-1-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldmia-1-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-1-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldmia-1-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-2-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldmia-2-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-2-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldmia-2-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-2-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldmia-2-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-2-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldmia-2-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-3-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldmia-3-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-3-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldmia-3-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-3-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldmia-3-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-3-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldmia-3-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-1-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldr-1-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-1-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldr-1-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-1-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldr-1-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-1-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldr-1-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-10-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldr-10-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-10-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldr-10-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-11-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldr-11-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-11-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldr-11-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-12-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldr-12-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-12-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldr-12-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-2-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldr-2-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-2-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldr-2-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-2-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldr-2-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-2-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldr-2-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-3-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldr-3-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-3-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldr-3-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-3-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldr-3-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-3-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldr-3-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-4-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldr-4-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-4-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldr-4-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-4-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldr-4-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-4-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldr-4-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-5-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldr-5-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-5-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldr-5-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-5-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldr-5-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-5-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldr-5-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-6-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldr-6-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-6-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldr-6-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-6-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldr-6-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-6-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldr-6-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-7-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldr-7-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-7-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldr-7-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-7-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldr-7-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-7-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldr-7-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-8-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldr-8-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-8-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldr-8-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-8-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldr-8-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-8-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldr-8-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-9-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldr-9-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-9-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldr-9-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrd-1-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldrd-1-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrd-1-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldrd-1-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrd-1-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldrd-1-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrd-1-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldrd-1-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrd-2-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldrd-2-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrd-2-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldrd-2-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrh-1-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldrh-1-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrh-1-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldrh-1-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrsh-1-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldrsh-1-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrsh-1-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldrsh-1-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrsh-2-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-ldrsh-2-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrsh-2-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-ldrsh-2-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-1-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-1-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-1-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-1-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-1-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-1-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-1-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-1-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-10-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-10-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-10-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-10-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-11-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-11-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-11-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-11-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-12-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-12-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-12-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-12-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-13-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-13-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-13-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-13-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-14-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-14-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-14-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-14-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-15-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-15-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-15-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-15-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-16-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-16-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-16-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-16-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-17-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-17-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-17-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-17-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-18-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-18-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-18-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-18-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-19-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-19-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-19-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-19-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-2-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-2-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-2-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-2-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-2-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-2-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-2-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-2-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-20-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-20-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-20-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-20-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-21-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-21-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-21-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-21-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-22-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-22-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-22-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-22-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-23-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-23-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-23-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-23-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-24-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-24-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-24-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-24-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-25-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-25-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-25-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-25-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-26-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-26-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-26-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-26-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-27-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-27-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-27-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-27-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-28-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-28-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-28-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-28-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-29-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-29-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-29-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-29-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-3-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-3-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-3-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-3-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-3-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-3-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-3-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-3-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-30-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-30-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-30-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-30-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-31-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-31-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-31-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-31-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-4-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-4-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-4-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-4-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-4-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-4-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-4-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-4-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-5-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-5-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-5-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-5-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-5-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-5-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-5-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-5-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-6-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-6-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-6-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-6-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-6-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-6-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-6-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-6-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-7-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-7-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-7-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-7-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-8-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-8-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-8-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-8-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-9-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mov-9-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-9-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mov-9-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-moveq-1-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-moveq-1-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-moveq-1-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-moveq-1-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-movs-1-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-movs-1-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-movs-1-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-movs-1-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-1-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-mvn-1-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-1-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mvn-1-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-1-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mvn-1-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-1-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mvn-1-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-2-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-mvn-2-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-2-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mvn-2-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-2-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mvn-2-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-2-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mvn-2-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-3-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-mvn-3-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-3-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mvn-3-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-3-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mvn-3-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-3-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mvn-3-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-4-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-mvn-4-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-4-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mvn-4-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-4-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-mvn-4-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-4-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-mvn-4-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-pop-1-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-pop-1-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-pop-1-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-pop-1-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-pop-1-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-pop-1-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-pop-1-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-pop-1-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-pop-2-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-pop-2-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-pop-2-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-pop-2-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-pop-2-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-pop-2-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-pop-2-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-pop-2-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-pop-3-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-pop-3-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-pop-3-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-pop-3-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-1-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-push-1-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-1-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-push-1-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-1-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-push-1-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-1-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-push-1-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-2-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-push-2-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-2-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-push-2-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-2-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-push-2-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-2-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-push-2-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-3-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-push-3-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-3-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-push-3-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-3-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-push-3-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-3-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-push-3-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-1-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-str-1-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-1-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-str-1-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-1-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-str-1-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-1-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-str-1-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-2-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-str-2-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-2-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-str-2-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-2-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-str-2-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-2-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-str-2-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-3-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-str-3-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-3-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-str-3-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-3-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-str-3-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-3-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-str-3-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-4-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-str-4-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-4-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-str-4-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-4-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-str-4-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-4-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-str-4-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-5-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-str-5-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-5-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-str-5-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-strb-1-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-strb-1-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-strb-1-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-strb-1-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-strb-2-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-strb-2-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-strb-2-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-strb-2-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-strbt-1-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-strbt-1-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-strbt-1-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-strbt-1-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-strd-1-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-strd-1-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-strd-1-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-strd-1-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-strt-1-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-strt-1-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-strt-1-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-strt-1-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-1-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-sub-1-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-1-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-sub-1-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-1-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-sub-1-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-1-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-sub-1-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-10-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-sub-10-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-10-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-sub-10-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-2-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-sub-2-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-2-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-sub-2-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-2-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-sub-2-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-2-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-sub-2-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-3-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-sub-3-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-3-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-sub-3-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-3-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-sub-3-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-3-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-sub-3-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-4-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-sub-4-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-4-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-sub-4-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-4-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-sub-4-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-4-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-sub-4-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-5-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-sub-5-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-5-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-sub-5-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-5-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-sub-5-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-5-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-sub-5-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-6-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-sub-6-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-6-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-sub-6-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-6-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-sub-6-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-6-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-sub-6-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-8-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-sub-8-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-8-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-sub-8-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-9-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-sub-9-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-9-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-sub-9-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-1-arm.dat b/lldb/test/API/arm/emulation/new-test-files/test-subs-1-arm.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-1-arm.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-subs-1-arm.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-1-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-subs-1-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-1-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-subs-1-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-10-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-subs-10-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-10-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-subs-10-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-2-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-subs-2-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-2-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-subs-2-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-3-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-subs-3-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-3-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-subs-3-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-4-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-subs-4-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-4-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-subs-4-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-5-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-subs-5-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-5-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-subs-5-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-6-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-subs-6-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-6-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-subs-6-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-8-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-subs-8-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-8-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-subs-8-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-9-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-subs-9-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-9-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-subs-9-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpop-1-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-vpop-1-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpop-1-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-vpop-1-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpop-2-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-vpop-2-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpop-2-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-vpop-2-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpop-3-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-vpop-3-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpop-3-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-vpop-3-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpush-1-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-vpush-1-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpush-1-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-vpush-1-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpush-2-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-vpush-2-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpush-2-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-vpush-2-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpush-3-thumb.dat b/lldb/test/API/arm/emulation/new-test-files/test-vpush-3-thumb.dat
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpush-3-thumb.dat
rename to lldb/test/API/arm/emulation/new-test-files/test-vpush-3-thumb.dat

diff  --git a/lldb/packages/Python/lldbsuite/test/benchmarks/continue/Makefile b/lldb/test/API/benchmarks/continue/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/benchmarks/continue/Makefile
rename to lldb/test/API/benchmarks/continue/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/benchmarks/continue/TestBenchmarkContinue.py b/lldb/test/API/benchmarks/continue/TestBenchmarkContinue.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/benchmarks/continue/TestBenchmarkContinue.py
rename to lldb/test/API/benchmarks/continue/TestBenchmarkContinue.py

diff  --git a/lldb/packages/Python/lldbsuite/test/benchmarks/continue/main.cpp b/lldb/test/API/benchmarks/continue/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/benchmarks/continue/main.cpp
rename to lldb/test/API/benchmarks/continue/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/benchmarks/expression/Makefile b/lldb/test/API/benchmarks/expression/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/benchmarks/expression/Makefile
rename to lldb/test/API/benchmarks/expression/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestExpressionCmd.py b/lldb/test/API/benchmarks/expression/TestExpressionCmd.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestExpressionCmd.py
rename to lldb/test/API/benchmarks/expression/TestExpressionCmd.py

diff  --git a/lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestRepeatedExprs.py b/lldb/test/API/benchmarks/expression/TestRepeatedExprs.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestRepeatedExprs.py
rename to lldb/test/API/benchmarks/expression/TestRepeatedExprs.py

diff  --git a/lldb/packages/Python/lldbsuite/test/benchmarks/expression/main.cpp b/lldb/test/API/benchmarks/expression/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/benchmarks/expression/main.cpp
rename to lldb/test/API/benchmarks/expression/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/benchmarks/frame_variable/TestFrameVariableResponse.py b/lldb/test/API/benchmarks/frame_variable/TestFrameVariableResponse.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/benchmarks/frame_variable/TestFrameVariableResponse.py
rename to lldb/test/API/benchmarks/frame_variable/TestFrameVariableResponse.py

diff  --git a/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxlist/Makefile b/lldb/test/API/benchmarks/libcxxlist/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/benchmarks/libcxxlist/Makefile
rename to lldb/test/API/benchmarks/libcxxlist/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxlist/TestBenchmarkLibcxxList.py b/lldb/test/API/benchmarks/libcxxlist/TestBenchmarkLibcxxList.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/benchmarks/libcxxlist/TestBenchmarkLibcxxList.py
rename to lldb/test/API/benchmarks/libcxxlist/TestBenchmarkLibcxxList.py

diff  --git a/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxlist/main.cpp b/lldb/test/API/benchmarks/libcxxlist/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/benchmarks/libcxxlist/main.cpp
rename to lldb/test/API/benchmarks/libcxxlist/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxmap/Makefile b/lldb/test/API/benchmarks/libcxxmap/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/benchmarks/libcxxmap/Makefile
rename to lldb/test/API/benchmarks/libcxxmap/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxmap/TestBenchmarkLibcxxMap.py b/lldb/test/API/benchmarks/libcxxmap/TestBenchmarkLibcxxMap.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/benchmarks/libcxxmap/TestBenchmarkLibcxxMap.py
rename to lldb/test/API/benchmarks/libcxxmap/TestBenchmarkLibcxxMap.py

diff  --git a/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxmap/main.cpp b/lldb/test/API/benchmarks/libcxxmap/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/benchmarks/libcxxmap/main.cpp
rename to lldb/test/API/benchmarks/libcxxmap/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/benchmarks/startup/TestStartupDelays.py b/lldb/test/API/benchmarks/startup/TestStartupDelays.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/benchmarks/startup/TestStartupDelays.py
rename to lldb/test/API/benchmarks/startup/TestStartupDelays.py

diff  --git a/lldb/packages/Python/lldbsuite/test/benchmarks/stepping/TestSteppingSpeed.py b/lldb/test/API/benchmarks/stepping/TestSteppingSpeed.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/benchmarks/stepping/TestSteppingSpeed.py
rename to lldb/test/API/benchmarks/stepping/TestSteppingSpeed.py

diff  --git a/lldb/packages/Python/lldbsuite/test/benchmarks/turnaround/TestCompileRunToBreakpointTurnaround.py b/lldb/test/API/benchmarks/turnaround/TestCompileRunToBreakpointTurnaround.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/benchmarks/turnaround/TestCompileRunToBreakpointTurnaround.py
rename to lldb/test/API/benchmarks/turnaround/TestCompileRunToBreakpointTurnaround.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/add-dsym/uuid/Makefile b/lldb/test/API/commands/add-dsym/uuid/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/add-dsym/uuid/Makefile
rename to lldb/test/API/commands/add-dsym/uuid/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/add-dsym/uuid/TestAddDsymCommand.py b/lldb/test/API/commands/add-dsym/uuid/TestAddDsymCommand.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/add-dsym/uuid/TestAddDsymCommand.py
rename to lldb/test/API/commands/add-dsym/uuid/TestAddDsymCommand.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/add-dsym/uuid/main.cpp.template b/lldb/test/API/commands/add-dsym/uuid/main.cpp.template
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/add-dsym/uuid/main.cpp.template
rename to lldb/test/API/commands/add-dsym/uuid/main.cpp.template

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/apropos/basic/TestApropos.py b/lldb/test/API/commands/apropos/basic/TestApropos.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/apropos/basic/TestApropos.py
rename to lldb/test/API/commands/apropos/basic/TestApropos.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/apropos/with-process/Makefile b/lldb/test/API/commands/apropos/with-process/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/apropos/with-process/Makefile
rename to lldb/test/API/commands/apropos/with-process/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/apropos/with-process/TestAproposWithProcess.py b/lldb/test/API/commands/apropos/with-process/TestAproposWithProcess.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/apropos/with-process/TestAproposWithProcess.py
rename to lldb/test/API/commands/apropos/with-process/TestAproposWithProcess.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/apropos/with-process/main.cpp b/lldb/test/API/commands/apropos/with-process/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/apropos/with-process/main.cpp
rename to lldb/test/API/commands/apropos/with-process/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/breakpoint/command/list/TestBreakpointCommandList.py b/lldb/test/API/commands/breakpoint/command/list/TestBreakpointCommandList.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/breakpoint/command/list/TestBreakpointCommandList.py
rename to lldb/test/API/commands/breakpoint/command/list/TestBreakpointCommandList.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/breakpoint/command/list/a.yaml b/lldb/test/API/commands/breakpoint/command/list/a.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/breakpoint/command/list/a.yaml
rename to lldb/test/API/commands/breakpoint/command/list/a.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/.categories b/lldb/test/API/commands/command/.categories
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/.categories
rename to lldb/test/API/commands/command/.categories

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/delete/TestCommandDelete.py b/lldb/test/API/commands/command/delete/TestCommandDelete.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/delete/TestCommandDelete.py
rename to lldb/test/API/commands/command/delete/TestCommandDelete.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/history/TestCommandHistory.py b/lldb/test/API/commands/command/history/TestCommandHistory.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/history/TestCommandHistory.py
rename to lldb/test/API/commands/command/history/TestCommandHistory.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/invalid-args/TestInvalidArgsCommand.py b/lldb/test/API/commands/command/invalid-args/TestInvalidArgsCommand.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/invalid-args/TestInvalidArgsCommand.py
rename to lldb/test/API/commands/command/invalid-args/TestInvalidArgsCommand.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/nested_alias/Makefile b/lldb/test/API/commands/command/nested_alias/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/nested_alias/Makefile
rename to lldb/test/API/commands/command/nested_alias/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/nested_alias/TestNestedAlias.py b/lldb/test/API/commands/command/nested_alias/TestNestedAlias.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/nested_alias/TestNestedAlias.py
rename to lldb/test/API/commands/command/nested_alias/TestNestedAlias.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/nested_alias/main.cpp b/lldb/test/API/commands/command/nested_alias/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/nested_alias/main.cpp
rename to lldb/test/API/commands/command/nested_alias/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script/Makefile b/lldb/test/API/commands/command/script/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script/Makefile
rename to lldb/test/API/commands/command/script/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script/TestCommandScript.py b/lldb/test/API/commands/command/script/TestCommandScript.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script/TestCommandScript.py
rename to lldb/test/API/commands/command/script/TestCommandScript.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script/bug11569.py b/lldb/test/API/commands/command/script/bug11569.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script/bug11569.py
rename to lldb/test/API/commands/command/script/bug11569.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script/callables.py b/lldb/test/API/commands/command/script/callables.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script/callables.py
rename to lldb/test/API/commands/command/script/callables.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script/decorated.py b/lldb/test/API/commands/command/script/decorated.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script/decorated.py
rename to lldb/test/API/commands/command/script/decorated.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script/import/Makefile b/lldb/test/API/commands/command/script/import/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script/import/Makefile
rename to lldb/test/API/commands/command/script/import/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script/import/TestImport.py b/lldb/test/API/commands/command/script/import/TestImport.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script/import/TestImport.py
rename to lldb/test/API/commands/command/script/import/TestImport.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script/import/bar/bar.py b/lldb/test/API/commands/command/script/import/bar/bar.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script/import/bar/bar.py
rename to lldb/test/API/commands/command/script/import/bar/bar.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script/import/bar/barutil.py b/lldb/test/API/commands/command/script/import/bar/barutil.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script/import/bar/barutil.py
rename to lldb/test/API/commands/command/script/import/bar/barutil.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script/import/dummymodule.py b/lldb/test/API/commands/command/script/import/dummymodule.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script/import/dummymodule.py
rename to lldb/test/API/commands/command/script/import/dummymodule.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script/import/foo/bar/foobar.py b/lldb/test/API/commands/command/script/import/foo/bar/foobar.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script/import/foo/bar/foobar.py
rename to lldb/test/API/commands/command/script/import/foo/bar/foobar.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script/import/foo/foo.py b/lldb/test/API/commands/command/script/import/foo/foo.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script/import/foo/foo.py
rename to lldb/test/API/commands/command/script/import/foo/foo.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script/import/foo/foo2.py b/lldb/test/API/commands/command/script/import/foo/foo2.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script/import/foo/foo2.py
rename to lldb/test/API/commands/command/script/import/foo/foo2.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script/import/main.c b/lldb/test/API/commands/command/script/import/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script/import/main.c
rename to lldb/test/API/commands/command/script/import/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script/import/rdar-12586188/Makefile b/lldb/test/API/commands/command/script/import/rdar-12586188/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script/import/rdar-12586188/Makefile
rename to lldb/test/API/commands/command/script/import/rdar-12586188/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script/import/rdar-12586188/TestRdar12586188.py b/lldb/test/API/commands/command/script/import/rdar-12586188/TestRdar12586188.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script/import/rdar-12586188/TestRdar12586188.py
rename to lldb/test/API/commands/command/script/import/rdar-12586188/TestRdar12586188.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script/import/rdar-12586188/fail12586188.py b/lldb/test/API/commands/command/script/import/rdar-12586188/fail12586188.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script/import/rdar-12586188/fail12586188.py
rename to lldb/test/API/commands/command/script/import/rdar-12586188/fail12586188.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script/import/rdar-12586188/fail212586188.py b/lldb/test/API/commands/command/script/import/rdar-12586188/fail212586188.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script/import/rdar-12586188/fail212586188.py
rename to lldb/test/API/commands/command/script/import/rdar-12586188/fail212586188.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script/import/thepackage/TPunitA.py b/lldb/test/API/commands/command/script/import/thepackage/TPunitA.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script/import/thepackage/TPunitA.py
rename to lldb/test/API/commands/command/script/import/thepackage/TPunitA.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script/import/thepackage/TPunitB.py b/lldb/test/API/commands/command/script/import/thepackage/TPunitB.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script/import/thepackage/TPunitB.py
rename to lldb/test/API/commands/command/script/import/thepackage/TPunitB.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script/import/thepackage/__init__.py b/lldb/test/API/commands/command/script/import/thepackage/__init__.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script/import/thepackage/__init__.py
rename to lldb/test/API/commands/command/script/import/thepackage/__init__.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script/main.cpp b/lldb/test/API/commands/command/script/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script/main.cpp
rename to lldb/test/API/commands/command/script/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script/mysto.py b/lldb/test/API/commands/command/script/mysto.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script/mysto.py
rename to lldb/test/API/commands/command/script/mysto.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script/py_import b/lldb/test/API/commands/command/script/py_import
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script/py_import
rename to lldb/test/API/commands/command/script/py_import

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script/welcome.py b/lldb/test/API/commands/command/script/welcome.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script/welcome.py
rename to lldb/test/API/commands/command/script/welcome.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script_alias/TestCommandScriptAlias.py b/lldb/test/API/commands/command/script_alias/TestCommandScriptAlias.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script_alias/TestCommandScriptAlias.py
rename to lldb/test/API/commands/command/script_alias/TestCommandScriptAlias.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/script_alias/tcsacmd.py b/lldb/test/API/commands/command/script_alias/tcsacmd.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/script_alias/tcsacmd.py
rename to lldb/test/API/commands/command/script_alias/tcsacmd.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/source/.lldb b/lldb/test/API/commands/command/source/.lldb
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/source/.lldb
rename to lldb/test/API/commands/command/source/.lldb

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/source/TestCommandSource.py b/lldb/test/API/commands/command/source/TestCommandSource.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/source/TestCommandSource.py
rename to lldb/test/API/commands/command/source/TestCommandSource.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/source/commands.txt b/lldb/test/API/commands/command/source/commands.txt
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/source/commands.txt
rename to lldb/test/API/commands/command/source/commands.txt

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/command/source/my.py b/lldb/test/API/commands/command/source/my.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/command/source/my.py
rename to lldb/test/API/commands/command/source/my.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/disassemble/basic/Makefile b/lldb/test/API/commands/disassemble/basic/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/disassemble/basic/Makefile
rename to lldb/test/API/commands/disassemble/basic/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/disassemble/basic/TestDisassembleBreakpoint.py b/lldb/test/API/commands/disassemble/basic/TestDisassembleBreakpoint.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/disassemble/basic/TestDisassembleBreakpoint.py
rename to lldb/test/API/commands/disassemble/basic/TestDisassembleBreakpoint.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/disassemble/basic/TestFrameDisassemble.py b/lldb/test/API/commands/disassemble/basic/TestFrameDisassemble.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/disassemble/basic/TestFrameDisassemble.py
rename to lldb/test/API/commands/disassemble/basic/TestFrameDisassemble.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/disassemble/basic/main.cpp b/lldb/test/API/commands/disassemble/basic/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/disassemble/basic/main.cpp
rename to lldb/test/API/commands/disassemble/basic/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/.categories b/lldb/test/API/commands/expression/.categories
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/.categories
rename to lldb/test/API/commands/expression/.categories

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/anonymous-struct/Makefile b/lldb/test/API/commands/expression/anonymous-struct/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/anonymous-struct/Makefile
rename to lldb/test/API/commands/expression/anonymous-struct/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/anonymous-struct/TestCallUserAnonTypedef.py b/lldb/test/API/commands/expression/anonymous-struct/TestCallUserAnonTypedef.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/anonymous-struct/TestCallUserAnonTypedef.py
rename to lldb/test/API/commands/expression/anonymous-struct/TestCallUserAnonTypedef.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/anonymous-struct/main.cpp b/lldb/test/API/commands/expression/anonymous-struct/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/anonymous-struct/main.cpp
rename to lldb/test/API/commands/expression/anonymous-struct/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/argument_passing_restrictions/Makefile b/lldb/test/API/commands/expression/argument_passing_restrictions/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/argument_passing_restrictions/Makefile
rename to lldb/test/API/commands/expression/argument_passing_restrictions/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/argument_passing_restrictions/TestArgumentPassingRestrictions.py b/lldb/test/API/commands/expression/argument_passing_restrictions/TestArgumentPassingRestrictions.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/argument_passing_restrictions/TestArgumentPassingRestrictions.py
rename to lldb/test/API/commands/expression/argument_passing_restrictions/TestArgumentPassingRestrictions.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/argument_passing_restrictions/main.cpp b/lldb/test/API/commands/expression/argument_passing_restrictions/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/argument_passing_restrictions/main.cpp
rename to lldb/test/API/commands/expression/argument_passing_restrictions/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/calculator_mode/TestCalculatorMode.py b/lldb/test/API/commands/expression/calculator_mode/TestCalculatorMode.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/calculator_mode/TestCalculatorMode.py
rename to lldb/test/API/commands/expression/calculator_mode/TestCalculatorMode.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/call-function/Makefile b/lldb/test/API/commands/expression/call-function/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/call-function/Makefile
rename to lldb/test/API/commands/expression/call-function/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallBuiltinFunction.py b/lldb/test/API/commands/expression/call-function/TestCallBuiltinFunction.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallBuiltinFunction.py
rename to lldb/test/API/commands/expression/call-function/TestCallBuiltinFunction.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallStdStringFunction.py b/lldb/test/API/commands/expression/call-function/TestCallStdStringFunction.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallStdStringFunction.py
rename to lldb/test/API/commands/expression/call-function/TestCallStdStringFunction.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallStopAndContinue.py b/lldb/test/API/commands/expression/call-function/TestCallStopAndContinue.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallStopAndContinue.py
rename to lldb/test/API/commands/expression/call-function/TestCallStopAndContinue.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallUserDefinedFunction.py b/lldb/test/API/commands/expression/call-function/TestCallUserDefinedFunction.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallUserDefinedFunction.py
rename to lldb/test/API/commands/expression/call-function/TestCallUserDefinedFunction.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/call-function/main.cpp b/lldb/test/API/commands/expression/call-function/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/call-function/main.cpp
rename to lldb/test/API/commands/expression/call-function/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/call-restarts/Makefile b/lldb/test/API/commands/expression/call-restarts/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/call-restarts/Makefile
rename to lldb/test/API/commands/expression/call-restarts/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/call-restarts/TestCallThatRestarts.py b/lldb/test/API/commands/expression/call-restarts/TestCallThatRestarts.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/call-restarts/TestCallThatRestarts.py
rename to lldb/test/API/commands/expression/call-restarts/TestCallThatRestarts.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/call-restarts/lotta-signals.c b/lldb/test/API/commands/expression/call-restarts/lotta-signals.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/call-restarts/lotta-signals.c
rename to lldb/test/API/commands/expression/call-restarts/lotta-signals.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/call-throws/Makefile b/lldb/test/API/commands/expression/call-throws/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/call-throws/Makefile
rename to lldb/test/API/commands/expression/call-throws/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/call-throws/TestCallThatThrows.py b/lldb/test/API/commands/expression/call-throws/TestCallThatThrows.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/call-throws/TestCallThatThrows.py
rename to lldb/test/API/commands/expression/call-throws/TestCallThatThrows.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/call-throws/call-throws.m b/lldb/test/API/commands/expression/call-throws/call-throws.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/call-throws/call-throws.m
rename to lldb/test/API/commands/expression/call-throws/call-throws.m

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/cast_int_to_anonymous_enum/Makefile b/lldb/test/API/commands/expression/cast_int_to_anonymous_enum/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/cast_int_to_anonymous_enum/Makefile
rename to lldb/test/API/commands/expression/cast_int_to_anonymous_enum/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/cast_int_to_anonymous_enum/TestCastIntToAnonymousEnum.py b/lldb/test/API/commands/expression/cast_int_to_anonymous_enum/TestCastIntToAnonymousEnum.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/cast_int_to_anonymous_enum/TestCastIntToAnonymousEnum.py
rename to lldb/test/API/commands/expression/cast_int_to_anonymous_enum/TestCastIntToAnonymousEnum.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/cast_int_to_anonymous_enum/main.cpp b/lldb/test/API/commands/expression/cast_int_to_anonymous_enum/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/cast_int_to_anonymous_enum/main.cpp
rename to lldb/test/API/commands/expression/cast_int_to_anonymous_enum/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/char/Makefile b/lldb/test/API/commands/expression/char/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/char/Makefile
rename to lldb/test/API/commands/expression/char/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/char/TestExprsChar.py b/lldb/test/API/commands/expression/char/TestExprsChar.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/char/TestExprsChar.py
rename to lldb/test/API/commands/expression/char/TestExprsChar.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/char/main.cpp b/lldb/test/API/commands/expression/char/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/char/main.cpp
rename to lldb/test/API/commands/expression/char/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/class_template_specialization_empty_pack/Makefile b/lldb/test/API/commands/expression/class_template_specialization_empty_pack/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/class_template_specialization_empty_pack/Makefile
rename to lldb/test/API/commands/expression/class_template_specialization_empty_pack/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/class_template_specialization_empty_pack/TestClassTemplateSpecializationParametersHandling.py b/lldb/test/API/commands/expression/class_template_specialization_empty_pack/TestClassTemplateSpecializationParametersHandling.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/class_template_specialization_empty_pack/TestClassTemplateSpecializationParametersHandling.py
rename to lldb/test/API/commands/expression/class_template_specialization_empty_pack/TestClassTemplateSpecializationParametersHandling.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/class_template_specialization_empty_pack/main.cpp b/lldb/test/API/commands/expression/class_template_specialization_empty_pack/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/class_template_specialization_empty_pack/main.cpp
rename to lldb/test/API/commands/expression/class_template_specialization_empty_pack/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/codegen-crash-typedefdecl-not-in_declcontext/TestCodegenCrashTypedefDeclNotInDeclContext.py b/lldb/test/API/commands/expression/codegen-crash-typedefdecl-not-in_declcontext/TestCodegenCrashTypedefDeclNotInDeclContext.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/codegen-crash-typedefdecl-not-in_declcontext/TestCodegenCrashTypedefDeclNotInDeclContext.py
rename to lldb/test/API/commands/expression/codegen-crash-typedefdecl-not-in_declcontext/TestCodegenCrashTypedefDeclNotInDeclContext.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/codegen-crash-typedefdecl-not-in_declcontext/main.cpp b/lldb/test/API/commands/expression/codegen-crash-typedefdecl-not-in_declcontext/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/codegen-crash-typedefdecl-not-in_declcontext/main.cpp
rename to lldb/test/API/commands/expression/codegen-crash-typedefdecl-not-in_declcontext/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/completion-crash-incomplete-record/TestCompletionCrashIncompleteRecord.py b/lldb/test/API/commands/expression/completion-crash-incomplete-record/TestCompletionCrashIncompleteRecord.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/completion-crash-incomplete-record/TestCompletionCrashIncompleteRecord.py
rename to lldb/test/API/commands/expression/completion-crash-incomplete-record/TestCompletionCrashIncompleteRecord.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/completion-crash-incomplete-record/main.cpp b/lldb/test/API/commands/expression/completion-crash-incomplete-record/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/completion-crash-incomplete-record/main.cpp
rename to lldb/test/API/commands/expression/completion-crash-incomplete-record/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/completion-crash-invalid-iterator/Makefile b/lldb/test/API/commands/expression/completion-crash-invalid-iterator/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/completion-crash-invalid-iterator/Makefile
rename to lldb/test/API/commands/expression/completion-crash-invalid-iterator/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/completion-crash-invalid-iterator/TestInvalidIteratorCompletionCrash.py b/lldb/test/API/commands/expression/completion-crash-invalid-iterator/TestInvalidIteratorCompletionCrash.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/completion-crash-invalid-iterator/TestInvalidIteratorCompletionCrash.py
rename to lldb/test/API/commands/expression/completion-crash-invalid-iterator/TestInvalidIteratorCompletionCrash.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/completion-crash-invalid-iterator/main.cpp b/lldb/test/API/commands/expression/completion-crash-invalid-iterator/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/completion-crash-invalid-iterator/main.cpp
rename to lldb/test/API/commands/expression/completion-crash-invalid-iterator/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/completion-in-lambda-and-unnamed-class/TestCompletionInLambdaAndUnnamedClass.py b/lldb/test/API/commands/expression/completion-in-lambda-and-unnamed-class/TestCompletionInLambdaAndUnnamedClass.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/completion-in-lambda-and-unnamed-class/TestCompletionInLambdaAndUnnamedClass.py
rename to lldb/test/API/commands/expression/completion-in-lambda-and-unnamed-class/TestCompletionInLambdaAndUnnamedClass.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/completion-in-lambda-and-unnamed-class/main.cpp b/lldb/test/API/commands/expression/completion-in-lambda-and-unnamed-class/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/completion-in-lambda-and-unnamed-class/main.cpp
rename to lldb/test/API/commands/expression/completion-in-lambda-and-unnamed-class/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/completion/.categories b/lldb/test/API/commands/expression/completion/.categories
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/completion/.categories
rename to lldb/test/API/commands/expression/completion/.categories

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/completion/Makefile b/lldb/test/API/commands/expression/completion/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/completion/Makefile
rename to lldb/test/API/commands/expression/completion/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/completion/TestExprCompletion.py b/lldb/test/API/commands/expression/completion/TestExprCompletion.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/completion/TestExprCompletion.py
rename to lldb/test/API/commands/expression/completion/TestExprCompletion.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/completion/main.cpp b/lldb/test/API/commands/expression/completion/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/completion/main.cpp
rename to lldb/test/API/commands/expression/completion/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/completion/other.cpp b/lldb/test/API/commands/expression/completion/other.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/completion/other.cpp
rename to lldb/test/API/commands/expression/completion/other.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/context-object-objc/Makefile b/lldb/test/API/commands/expression/context-object-objc/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/context-object-objc/Makefile
rename to lldb/test/API/commands/expression/context-object-objc/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/context-object-objc/TestContextObjectObjc.py b/lldb/test/API/commands/expression/context-object-objc/TestContextObjectObjc.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/context-object-objc/TestContextObjectObjc.py
rename to lldb/test/API/commands/expression/context-object-objc/TestContextObjectObjc.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/context-object-objc/main.m b/lldb/test/API/commands/expression/context-object-objc/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/context-object-objc/main.m
rename to lldb/test/API/commands/expression/context-object-objc/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/context-object/Makefile b/lldb/test/API/commands/expression/context-object/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/context-object/Makefile
rename to lldb/test/API/commands/expression/context-object/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/context-object/TestContextObject.py b/lldb/test/API/commands/expression/context-object/TestContextObject.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/context-object/TestContextObject.py
rename to lldb/test/API/commands/expression/context-object/TestContextObject.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/context-object/main.cpp b/lldb/test/API/commands/expression/context-object/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/context-object/main.cpp
rename to lldb/test/API/commands/expression/context-object/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/deleting-implicit-copy-constructor/TestDeletingImplicitCopyConstructor.py b/lldb/test/API/commands/expression/deleting-implicit-copy-constructor/TestDeletingImplicitCopyConstructor.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/deleting-implicit-copy-constructor/TestDeletingImplicitCopyConstructor.py
rename to lldb/test/API/commands/expression/deleting-implicit-copy-constructor/TestDeletingImplicitCopyConstructor.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/deleting-implicit-copy-constructor/main.cpp b/lldb/test/API/commands/expression/deleting-implicit-copy-constructor/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/deleting-implicit-copy-constructor/main.cpp
rename to lldb/test/API/commands/expression/deleting-implicit-copy-constructor/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/diagnostics/Makefile b/lldb/test/API/commands/expression/diagnostics/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/diagnostics/Makefile
rename to lldb/test/API/commands/expression/diagnostics/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/diagnostics/TestExprDiagnostics.py b/lldb/test/API/commands/expression/diagnostics/TestExprDiagnostics.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/diagnostics/TestExprDiagnostics.py
rename to lldb/test/API/commands/expression/diagnostics/TestExprDiagnostics.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/diagnostics/main.cpp b/lldb/test/API/commands/expression/diagnostics/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/diagnostics/main.cpp
rename to lldb/test/API/commands/expression/diagnostics/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/dollar-in-variable/TestDollarInVariable.py b/lldb/test/API/commands/expression/dollar-in-variable/TestDollarInVariable.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/dollar-in-variable/TestDollarInVariable.py
rename to lldb/test/API/commands/expression/dollar-in-variable/TestDollarInVariable.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/dollar-in-variable/main.c b/lldb/test/API/commands/expression/dollar-in-variable/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/dollar-in-variable/main.c
rename to lldb/test/API/commands/expression/dollar-in-variable/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/dont_allow_jit/Makefile b/lldb/test/API/commands/expression/dont_allow_jit/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/dont_allow_jit/Makefile
rename to lldb/test/API/commands/expression/dont_allow_jit/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/dont_allow_jit/TestAllowJIT.py b/lldb/test/API/commands/expression/dont_allow_jit/TestAllowJIT.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/dont_allow_jit/TestAllowJIT.py
rename to lldb/test/API/commands/expression/dont_allow_jit/TestAllowJIT.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/dont_allow_jit/main.c b/lldb/test/API/commands/expression/dont_allow_jit/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/dont_allow_jit/main.c
rename to lldb/test/API/commands/expression/dont_allow_jit/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/entry-bp/Makefile b/lldb/test/API/commands/expression/entry-bp/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/entry-bp/Makefile
rename to lldb/test/API/commands/expression/entry-bp/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/entry-bp/TestExprEntryBP.py b/lldb/test/API/commands/expression/entry-bp/TestExprEntryBP.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/entry-bp/TestExprEntryBP.py
rename to lldb/test/API/commands/expression/entry-bp/TestExprEntryBP.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/entry-bp/main.c b/lldb/test/API/commands/expression/entry-bp/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/entry-bp/main.c
rename to lldb/test/API/commands/expression/entry-bp/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/expr-in-syscall/Makefile b/lldb/test/API/commands/expression/expr-in-syscall/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/expr-in-syscall/Makefile
rename to lldb/test/API/commands/expression/expr-in-syscall/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/expr-in-syscall/TestExpressionInSyscall.py b/lldb/test/API/commands/expression/expr-in-syscall/TestExpressionInSyscall.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/expr-in-syscall/TestExpressionInSyscall.py
rename to lldb/test/API/commands/expression/expr-in-syscall/TestExpressionInSyscall.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/expr-in-syscall/main.cpp b/lldb/test/API/commands/expression/expr-in-syscall/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/expr-in-syscall/main.cpp
rename to lldb/test/API/commands/expression/expr-in-syscall/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/fixits/Makefile b/lldb/test/API/commands/expression/fixits/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/fixits/Makefile
rename to lldb/test/API/commands/expression/fixits/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/fixits/TestFixIts.py b/lldb/test/API/commands/expression/fixits/TestFixIts.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/fixits/TestFixIts.py
rename to lldb/test/API/commands/expression/fixits/TestFixIts.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/fixits/main.cpp b/lldb/test/API/commands/expression/fixits/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/fixits/main.cpp
rename to lldb/test/API/commands/expression/fixits/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/formatters/Makefile b/lldb/test/API/commands/expression/formatters/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/formatters/Makefile
rename to lldb/test/API/commands/expression/formatters/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/formatters/TestFormatters.py b/lldb/test/API/commands/expression/formatters/TestFormatters.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/formatters/TestFormatters.py
rename to lldb/test/API/commands/expression/formatters/TestFormatters.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/formatters/foosynth.py b/lldb/test/API/commands/expression/formatters/foosynth.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/formatters/foosynth.py
rename to lldb/test/API/commands/expression/formatters/foosynth.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/formatters/formatters.py b/lldb/test/API/commands/expression/formatters/formatters.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/formatters/formatters.py
rename to lldb/test/API/commands/expression/formatters/formatters.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/formatters/main.cpp b/lldb/test/API/commands/expression/formatters/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/formatters/main.cpp
rename to lldb/test/API/commands/expression/formatters/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/function_template_specialization_temp_args/Makefile b/lldb/test/API/commands/expression/function_template_specialization_temp_args/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/function_template_specialization_temp_args/Makefile
rename to lldb/test/API/commands/expression/function_template_specialization_temp_args/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/function_template_specialization_temp_args/TestFunctionTemplateSpecializationTempArgs.py b/lldb/test/API/commands/expression/function_template_specialization_temp_args/TestFunctionTemplateSpecializationTempArgs.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/function_template_specialization_temp_args/TestFunctionTemplateSpecializationTempArgs.py
rename to lldb/test/API/commands/expression/function_template_specialization_temp_args/TestFunctionTemplateSpecializationTempArgs.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/function_template_specialization_temp_args/main.cpp b/lldb/test/API/commands/expression/function_template_specialization_temp_args/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/function_template_specialization_temp_args/main.cpp
rename to lldb/test/API/commands/expression/function_template_specialization_temp_args/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/ignore-artificial-constructors/TestIgnoreArtificialConstructors.py b/lldb/test/API/commands/expression/ignore-artificial-constructors/TestIgnoreArtificialConstructors.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/ignore-artificial-constructors/TestIgnoreArtificialConstructors.py
rename to lldb/test/API/commands/expression/ignore-artificial-constructors/TestIgnoreArtificialConstructors.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/ignore-artificial-constructors/main.cpp b/lldb/test/API/commands/expression/ignore-artificial-constructors/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/ignore-artificial-constructors/main.cpp
rename to lldb/test/API/commands/expression/ignore-artificial-constructors/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/basic/Makefile b/lldb/test/API/commands/expression/import-std-module/basic/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/basic/Makefile
rename to lldb/test/API/commands/expression/import-std-module/basic/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/basic/TestImportStdModule.py b/lldb/test/API/commands/expression/import-std-module/basic/TestImportStdModule.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/basic/TestImportStdModule.py
rename to lldb/test/API/commands/expression/import-std-module/basic/TestImportStdModule.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/basic/main.cpp b/lldb/test/API/commands/expression/import-std-module/basic/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/basic/main.cpp
rename to lldb/test/API/commands/expression/import-std-module/basic/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/conflicts/Makefile b/lldb/test/API/commands/expression/import-std-module/conflicts/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/conflicts/Makefile
rename to lldb/test/API/commands/expression/import-std-module/conflicts/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/conflicts/TestStdModuleWithConflicts.py b/lldb/test/API/commands/expression/import-std-module/conflicts/TestStdModuleWithConflicts.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/conflicts/TestStdModuleWithConflicts.py
rename to lldb/test/API/commands/expression/import-std-module/conflicts/TestStdModuleWithConflicts.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/conflicts/main.cpp b/lldb/test/API/commands/expression/import-std-module/conflicts/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/conflicts/main.cpp
rename to lldb/test/API/commands/expression/import-std-module/conflicts/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-basic/Makefile b/lldb/test/API/commands/expression/import-std-module/deque-basic/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-basic/Makefile
rename to lldb/test/API/commands/expression/import-std-module/deque-basic/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-basic/TestDequeFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/deque-basic/TestDequeFromStdModule.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-basic/TestDequeFromStdModule.py
rename to lldb/test/API/commands/expression/import-std-module/deque-basic/TestDequeFromStdModule.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-basic/main.cpp b/lldb/test/API/commands/expression/import-std-module/deque-basic/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-basic/main.cpp
rename to lldb/test/API/commands/expression/import-std-module/deque-basic/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-dbg-info-content/Makefile b/lldb/test/API/commands/expression/import-std-module/deque-dbg-info-content/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-dbg-info-content/Makefile
rename to lldb/test/API/commands/expression/import-std-module/deque-dbg-info-content/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-dbg-info-content/TestDbgInfoContentDequeFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/deque-dbg-info-content/TestDbgInfoContentDequeFromStdModule.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-dbg-info-content/TestDbgInfoContentDequeFromStdModule.py
rename to lldb/test/API/commands/expression/import-std-module/deque-dbg-info-content/TestDbgInfoContentDequeFromStdModule.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-dbg-info-content/main.cpp b/lldb/test/API/commands/expression/import-std-module/deque-dbg-info-content/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-dbg-info-content/main.cpp
rename to lldb/test/API/commands/expression/import-std-module/deque-dbg-info-content/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/empty-module/Makefile b/lldb/test/API/commands/expression/import-std-module/empty-module/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/empty-module/Makefile
rename to lldb/test/API/commands/expression/import-std-module/empty-module/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/empty-module/TestEmptyStdModule.py b/lldb/test/API/commands/expression/import-std-module/empty-module/TestEmptyStdModule.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/empty-module/TestEmptyStdModule.py
rename to lldb/test/API/commands/expression/import-std-module/empty-module/TestEmptyStdModule.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/empty-module/main.cpp b/lldb/test/API/commands/expression/import-std-module/empty-module/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/empty-module/main.cpp
rename to lldb/test/API/commands/expression/import-std-module/empty-module/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/empty-module/root/usr/include/c++/v1/algorithm b/lldb/test/API/commands/expression/import-std-module/empty-module/root/usr/include/c++/v1/algorithm
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/empty-module/root/usr/include/c++/v1/algorithm
rename to lldb/test/API/commands/expression/import-std-module/empty-module/root/usr/include/c++/v1/algorithm

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/empty-module/root/usr/include/c++/v1/module.modulemap b/lldb/test/API/commands/expression/import-std-module/empty-module/root/usr/include/c++/v1/module.modulemap
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/empty-module/root/usr/include/c++/v1/module.modulemap
rename to lldb/test/API/commands/expression/import-std-module/empty-module/root/usr/include/c++/v1/module.modulemap

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/empty-module/root/usr/include/libc_header.h b/lldb/test/API/commands/expression/import-std-module/empty-module/root/usr/include/libc_header.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/empty-module/root/usr/include/libc_header.h
rename to lldb/test/API/commands/expression/import-std-module/empty-module/root/usr/include/libc_header.h

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list-dbg-info-content/Makefile b/lldb/test/API/commands/expression/import-std-module/forward_list-dbg-info-content/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list-dbg-info-content/Makefile
rename to lldb/test/API/commands/expression/import-std-module/forward_list-dbg-info-content/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list-dbg-info-content/TestDbgInfoContentForwardListFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/forward_list-dbg-info-content/TestDbgInfoContentForwardListFromStdModule.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list-dbg-info-content/TestDbgInfoContentForwardListFromStdModule.py
rename to lldb/test/API/commands/expression/import-std-module/forward_list-dbg-info-content/TestDbgInfoContentForwardListFromStdModule.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list-dbg-info-content/main.cpp b/lldb/test/API/commands/expression/import-std-module/forward_list-dbg-info-content/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list-dbg-info-content/main.cpp
rename to lldb/test/API/commands/expression/import-std-module/forward_list-dbg-info-content/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list/Makefile b/lldb/test/API/commands/expression/import-std-module/forward_list/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list/Makefile
rename to lldb/test/API/commands/expression/import-std-module/forward_list/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list/TestForwardListFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/forward_list/TestForwardListFromStdModule.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list/TestForwardListFromStdModule.py
rename to lldb/test/API/commands/expression/import-std-module/forward_list/TestForwardListFromStdModule.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list/main.cpp b/lldb/test/API/commands/expression/import-std-module/forward_list/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/forward_list/main.cpp
rename to lldb/test/API/commands/expression/import-std-module/forward_list/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/list-dbg-info-content/Makefile b/lldb/test/API/commands/expression/import-std-module/list-dbg-info-content/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/list-dbg-info-content/Makefile
rename to lldb/test/API/commands/expression/import-std-module/list-dbg-info-content/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/list-dbg-info-content/TestDbgInfoContentListFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/list-dbg-info-content/TestDbgInfoContentListFromStdModule.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/list-dbg-info-content/TestDbgInfoContentListFromStdModule.py
rename to lldb/test/API/commands/expression/import-std-module/list-dbg-info-content/TestDbgInfoContentListFromStdModule.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/list-dbg-info-content/main.cpp b/lldb/test/API/commands/expression/import-std-module/list-dbg-info-content/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/list-dbg-info-content/main.cpp
rename to lldb/test/API/commands/expression/import-std-module/list-dbg-info-content/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/list/Makefile b/lldb/test/API/commands/expression/import-std-module/list/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/list/Makefile
rename to lldb/test/API/commands/expression/import-std-module/list/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/list/TestListFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/list/TestListFromStdModule.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/list/TestListFromStdModule.py
rename to lldb/test/API/commands/expression/import-std-module/list/TestListFromStdModule.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/list/main.cpp b/lldb/test/API/commands/expression/import-std-module/list/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/list/main.cpp
rename to lldb/test/API/commands/expression/import-std-module/list/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/no-std-module/Makefile b/lldb/test/API/commands/expression/import-std-module/no-std-module/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/no-std-module/Makefile
rename to lldb/test/API/commands/expression/import-std-module/no-std-module/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/no-std-module/TestMissingStdModule.py b/lldb/test/API/commands/expression/import-std-module/no-std-module/TestMissingStdModule.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/no-std-module/TestMissingStdModule.py
rename to lldb/test/API/commands/expression/import-std-module/no-std-module/TestMissingStdModule.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/no-std-module/main.cpp b/lldb/test/API/commands/expression/import-std-module/no-std-module/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/no-std-module/main.cpp
rename to lldb/test/API/commands/expression/import-std-module/no-std-module/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/queue/Makefile b/lldb/test/API/commands/expression/import-std-module/queue/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/queue/Makefile
rename to lldb/test/API/commands/expression/import-std-module/queue/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/queue/TestQueueFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/queue/TestQueueFromStdModule.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/queue/TestQueueFromStdModule.py
rename to lldb/test/API/commands/expression/import-std-module/queue/TestQueueFromStdModule.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/queue/main.cpp b/lldb/test/API/commands/expression/import-std-module/queue/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/queue/main.cpp
rename to lldb/test/API/commands/expression/import-std-module/queue/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr-dbg-info-content/Makefile b/lldb/test/API/commands/expression/import-std-module/shared_ptr-dbg-info-content/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr-dbg-info-content/Makefile
rename to lldb/test/API/commands/expression/import-std-module/shared_ptr-dbg-info-content/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr-dbg-info-content/TestSharedPtrDbgInfoContentFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/shared_ptr-dbg-info-content/TestSharedPtrDbgInfoContentFromStdModule.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr-dbg-info-content/TestSharedPtrDbgInfoContentFromStdModule.py
rename to lldb/test/API/commands/expression/import-std-module/shared_ptr-dbg-info-content/TestSharedPtrDbgInfoContentFromStdModule.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr-dbg-info-content/main.cpp b/lldb/test/API/commands/expression/import-std-module/shared_ptr-dbg-info-content/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr-dbg-info-content/main.cpp
rename to lldb/test/API/commands/expression/import-std-module/shared_ptr-dbg-info-content/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr/Makefile b/lldb/test/API/commands/expression/import-std-module/shared_ptr/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr/Makefile
rename to lldb/test/API/commands/expression/import-std-module/shared_ptr/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr/TestSharedPtrFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/shared_ptr/TestSharedPtrFromStdModule.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr/TestSharedPtrFromStdModule.py
rename to lldb/test/API/commands/expression/import-std-module/shared_ptr/TestSharedPtrFromStdModule.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr/main.cpp b/lldb/test/API/commands/expression/import-std-module/shared_ptr/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/shared_ptr/main.cpp
rename to lldb/test/API/commands/expression/import-std-module/shared_ptr/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/stack/Makefile b/lldb/test/API/commands/expression/import-std-module/stack/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/stack/Makefile
rename to lldb/test/API/commands/expression/import-std-module/stack/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/stack/TestStackFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/stack/TestStackFromStdModule.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/stack/TestStackFromStdModule.py
rename to lldb/test/API/commands/expression/import-std-module/stack/TestStackFromStdModule.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/stack/main.cpp b/lldb/test/API/commands/expression/import-std-module/stack/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/stack/main.cpp
rename to lldb/test/API/commands/expression/import-std-module/stack/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/Makefile b/lldb/test/API/commands/expression/import-std-module/sysroot/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/Makefile
rename to lldb/test/API/commands/expression/import-std-module/sysroot/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/TestStdModuleSysroot.py b/lldb/test/API/commands/expression/import-std-module/sysroot/TestStdModuleSysroot.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/TestStdModuleSysroot.py
rename to lldb/test/API/commands/expression/import-std-module/sysroot/TestStdModuleSysroot.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/main.cpp b/lldb/test/API/commands/expression/import-std-module/sysroot/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/main.cpp
rename to lldb/test/API/commands/expression/import-std-module/sysroot/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/root/usr/include/c++/v1/algorithm b/lldb/test/API/commands/expression/import-std-module/sysroot/root/usr/include/c++/v1/algorithm
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/root/usr/include/c++/v1/algorithm
rename to lldb/test/API/commands/expression/import-std-module/sysroot/root/usr/include/c++/v1/algorithm

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/root/usr/include/c++/v1/module.modulemap b/lldb/test/API/commands/expression/import-std-module/sysroot/root/usr/include/c++/v1/module.modulemap
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/root/usr/include/c++/v1/module.modulemap
rename to lldb/test/API/commands/expression/import-std-module/sysroot/root/usr/include/c++/v1/module.modulemap

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/root/usr/include/libc_header.h b/lldb/test/API/commands/expression/import-std-module/sysroot/root/usr/include/libc_header.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/sysroot/root/usr/include/libc_header.h
rename to lldb/test/API/commands/expression/import-std-module/sysroot/root/usr/include/libc_header.h

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr-dbg-info-content/Makefile b/lldb/test/API/commands/expression/import-std-module/unique_ptr-dbg-info-content/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr-dbg-info-content/Makefile
rename to lldb/test/API/commands/expression/import-std-module/unique_ptr-dbg-info-content/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr-dbg-info-content/TestUniquePtrDbgInfoContent.py b/lldb/test/API/commands/expression/import-std-module/unique_ptr-dbg-info-content/TestUniquePtrDbgInfoContent.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr-dbg-info-content/TestUniquePtrDbgInfoContent.py
rename to lldb/test/API/commands/expression/import-std-module/unique_ptr-dbg-info-content/TestUniquePtrDbgInfoContent.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr-dbg-info-content/main.cpp b/lldb/test/API/commands/expression/import-std-module/unique_ptr-dbg-info-content/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr-dbg-info-content/main.cpp
rename to lldb/test/API/commands/expression/import-std-module/unique_ptr-dbg-info-content/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr/Makefile b/lldb/test/API/commands/expression/import-std-module/unique_ptr/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr/Makefile
rename to lldb/test/API/commands/expression/import-std-module/unique_ptr/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr/TestUniquePtrFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/unique_ptr/TestUniquePtrFromStdModule.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr/TestUniquePtrFromStdModule.py
rename to lldb/test/API/commands/expression/import-std-module/unique_ptr/TestUniquePtrFromStdModule.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr/main.cpp b/lldb/test/API/commands/expression/import-std-module/unique_ptr/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/unique_ptr/main.cpp
rename to lldb/test/API/commands/expression/import-std-module/unique_ptr/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-bool/Makefile b/lldb/test/API/commands/expression/import-std-module/vector-bool/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-bool/Makefile
rename to lldb/test/API/commands/expression/import-std-module/vector-bool/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-bool/TestVectorBoolFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/vector-bool/TestVectorBoolFromStdModule.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-bool/TestVectorBoolFromStdModule.py
rename to lldb/test/API/commands/expression/import-std-module/vector-bool/TestVectorBoolFromStdModule.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-bool/main.cpp b/lldb/test/API/commands/expression/import-std-module/vector-bool/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-bool/main.cpp
rename to lldb/test/API/commands/expression/import-std-module/vector-bool/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-dbg-info-content/Makefile b/lldb/test/API/commands/expression/import-std-module/vector-dbg-info-content/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-dbg-info-content/Makefile
rename to lldb/test/API/commands/expression/import-std-module/vector-dbg-info-content/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-dbg-info-content/TestDbgInfoContentVectorFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/vector-dbg-info-content/TestDbgInfoContentVectorFromStdModule.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-dbg-info-content/TestDbgInfoContentVectorFromStdModule.py
rename to lldb/test/API/commands/expression/import-std-module/vector-dbg-info-content/TestDbgInfoContentVectorFromStdModule.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-dbg-info-content/main.cpp b/lldb/test/API/commands/expression/import-std-module/vector-dbg-info-content/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-dbg-info-content/main.cpp
rename to lldb/test/API/commands/expression/import-std-module/vector-dbg-info-content/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-of-vectors/Makefile b/lldb/test/API/commands/expression/import-std-module/vector-of-vectors/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-of-vectors/Makefile
rename to lldb/test/API/commands/expression/import-std-module/vector-of-vectors/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-of-vectors/TestVectorOfVectorsFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/vector-of-vectors/TestVectorOfVectorsFromStdModule.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-of-vectors/TestVectorOfVectorsFromStdModule.py
rename to lldb/test/API/commands/expression/import-std-module/vector-of-vectors/TestVectorOfVectorsFromStdModule.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-of-vectors/main.cpp b/lldb/test/API/commands/expression/import-std-module/vector-of-vectors/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector-of-vectors/main.cpp
rename to lldb/test/API/commands/expression/import-std-module/vector-of-vectors/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector/Makefile b/lldb/test/API/commands/expression/import-std-module/vector/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector/Makefile
rename to lldb/test/API/commands/expression/import-std-module/vector/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector/TestVectorFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/vector/TestVectorFromStdModule.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector/TestVectorFromStdModule.py
rename to lldb/test/API/commands/expression/import-std-module/vector/TestVectorFromStdModule.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector/main.cpp b/lldb/test/API/commands/expression/import-std-module/vector/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/vector/main.cpp
rename to lldb/test/API/commands/expression/import-std-module/vector/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr-dbg-info-content/Makefile b/lldb/test/API/commands/expression/import-std-module/weak_ptr-dbg-info-content/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr-dbg-info-content/Makefile
rename to lldb/test/API/commands/expression/import-std-module/weak_ptr-dbg-info-content/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr-dbg-info-content/TestDbgInfoContentWeakPtrFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/weak_ptr-dbg-info-content/TestDbgInfoContentWeakPtrFromStdModule.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr-dbg-info-content/TestDbgInfoContentWeakPtrFromStdModule.py
rename to lldb/test/API/commands/expression/import-std-module/weak_ptr-dbg-info-content/TestDbgInfoContentWeakPtrFromStdModule.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr-dbg-info-content/main.cpp b/lldb/test/API/commands/expression/import-std-module/weak_ptr-dbg-info-content/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr-dbg-info-content/main.cpp
rename to lldb/test/API/commands/expression/import-std-module/weak_ptr-dbg-info-content/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr/Makefile b/lldb/test/API/commands/expression/import-std-module/weak_ptr/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr/Makefile
rename to lldb/test/API/commands/expression/import-std-module/weak_ptr/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr/TestWeakPtrFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/weak_ptr/TestWeakPtrFromStdModule.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr/TestWeakPtrFromStdModule.py
rename to lldb/test/API/commands/expression/import-std-module/weak_ptr/TestWeakPtrFromStdModule.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr/main.cpp b/lldb/test/API/commands/expression/import-std-module/weak_ptr/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/weak_ptr/main.cpp
rename to lldb/test/API/commands/expression/import-std-module/weak_ptr/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import_builtin_fileid/Makefile b/lldb/test/API/commands/expression/import_builtin_fileid/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import_builtin_fileid/Makefile
rename to lldb/test/API/commands/expression/import_builtin_fileid/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import_builtin_fileid/TestImportBuiltinFileID.py b/lldb/test/API/commands/expression/import_builtin_fileid/TestImportBuiltinFileID.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import_builtin_fileid/TestImportBuiltinFileID.py
rename to lldb/test/API/commands/expression/import_builtin_fileid/TestImportBuiltinFileID.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/import_builtin_fileid/main.m b/lldb/test/API/commands/expression/import_builtin_fileid/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/import_builtin_fileid/main.m
rename to lldb/test/API/commands/expression/import_builtin_fileid/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/inline-namespace/Makefile b/lldb/test/API/commands/expression/inline-namespace/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/inline-namespace/Makefile
rename to lldb/test/API/commands/expression/inline-namespace/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/inline-namespace/TestInlineNamespace.py b/lldb/test/API/commands/expression/inline-namespace/TestInlineNamespace.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/inline-namespace/TestInlineNamespace.py
rename to lldb/test/API/commands/expression/inline-namespace/TestInlineNamespace.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/inline-namespace/main.cpp b/lldb/test/API/commands/expression/inline-namespace/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/inline-namespace/main.cpp
rename to lldb/test/API/commands/expression/inline-namespace/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/invalid-args/TestInvalidArgsExpression.py b/lldb/test/API/commands/expression/invalid-args/TestInvalidArgsExpression.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/invalid-args/TestInvalidArgsExpression.py
rename to lldb/test/API/commands/expression/invalid-args/TestInvalidArgsExpression.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/ir-interpreter-phi-nodes/Makefile b/lldb/test/API/commands/expression/ir-interpreter-phi-nodes/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/ir-interpreter-phi-nodes/Makefile
rename to lldb/test/API/commands/expression/ir-interpreter-phi-nodes/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/ir-interpreter-phi-nodes/TestIRInterpreterPHINodes.py b/lldb/test/API/commands/expression/ir-interpreter-phi-nodes/TestIRInterpreterPHINodes.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/ir-interpreter-phi-nodes/TestIRInterpreterPHINodes.py
rename to lldb/test/API/commands/expression/ir-interpreter-phi-nodes/TestIRInterpreterPHINodes.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/ir-interpreter-phi-nodes/main.cpp b/lldb/test/API/commands/expression/ir-interpreter-phi-nodes/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/ir-interpreter-phi-nodes/main.cpp
rename to lldb/test/API/commands/expression/ir-interpreter-phi-nodes/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/ir-interpreter/Makefile b/lldb/test/API/commands/expression/ir-interpreter/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/ir-interpreter/Makefile
rename to lldb/test/API/commands/expression/ir-interpreter/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/ir-interpreter/TestIRInterpreter.py b/lldb/test/API/commands/expression/ir-interpreter/TestIRInterpreter.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/ir-interpreter/TestIRInterpreter.py
rename to lldb/test/API/commands/expression/ir-interpreter/TestIRInterpreter.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/ir-interpreter/main.c b/lldb/test/API/commands/expression/ir-interpreter/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/ir-interpreter/main.c
rename to lldb/test/API/commands/expression/ir-interpreter/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/issue_11588/Makefile b/lldb/test/API/commands/expression/issue_11588/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/issue_11588/Makefile
rename to lldb/test/API/commands/expression/issue_11588/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/issue_11588/Test11588.py b/lldb/test/API/commands/expression/issue_11588/Test11588.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/issue_11588/Test11588.py
rename to lldb/test/API/commands/expression/issue_11588/Test11588.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/issue_11588/main.cpp b/lldb/test/API/commands/expression/issue_11588/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/issue_11588/main.cpp
rename to lldb/test/API/commands/expression/issue_11588/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/issue_11588/s11588.py b/lldb/test/API/commands/expression/issue_11588/s11588.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/issue_11588/s11588.py
rename to lldb/test/API/commands/expression/issue_11588/s11588.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/macros/Makefile b/lldb/test/API/commands/expression/macros/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/macros/Makefile
rename to lldb/test/API/commands/expression/macros/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/macros/TestMacros.py b/lldb/test/API/commands/expression/macros/TestMacros.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/macros/TestMacros.py
rename to lldb/test/API/commands/expression/macros/TestMacros.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/macros/macro1.h b/lldb/test/API/commands/expression/macros/macro1.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/macros/macro1.h
rename to lldb/test/API/commands/expression/macros/macro1.h

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/macros/macro2.h b/lldb/test/API/commands/expression/macros/macro2.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/macros/macro2.h
rename to lldb/test/API/commands/expression/macros/macro2.h

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/macros/main.cpp b/lldb/test/API/commands/expression/macros/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/macros/main.cpp
rename to lldb/test/API/commands/expression/macros/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/multiline-completion/Makefile b/lldb/test/API/commands/expression/multiline-completion/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/multiline-completion/Makefile
rename to lldb/test/API/commands/expression/multiline-completion/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/multiline-completion/TestMultilineCompletion.py b/lldb/test/API/commands/expression/multiline-completion/TestMultilineCompletion.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/multiline-completion/TestMultilineCompletion.py
rename to lldb/test/API/commands/expression/multiline-completion/TestMultilineCompletion.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/multiline-completion/main.c b/lldb/test/API/commands/expression/multiline-completion/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/multiline-completion/main.c
rename to lldb/test/API/commands/expression/multiline-completion/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/multiline-navigation/TestMultilineNavigation.py b/lldb/test/API/commands/expression/multiline-navigation/TestMultilineNavigation.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/multiline-navigation/TestMultilineNavigation.py
rename to lldb/test/API/commands/expression/multiline-navigation/TestMultilineNavigation.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_cpp_and_c/Makefile b/lldb/test/API/commands/expression/namespace_local_var_same_name_cpp_and_c/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_cpp_and_c/Makefile
rename to lldb/test/API/commands/expression/namespace_local_var_same_name_cpp_and_c/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_cpp_and_c/TestNamespaceLocalVarSameNameCppAndC.py b/lldb/test/API/commands/expression/namespace_local_var_same_name_cpp_and_c/TestNamespaceLocalVarSameNameCppAndC.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_cpp_and_c/TestNamespaceLocalVarSameNameCppAndC.py
rename to lldb/test/API/commands/expression/namespace_local_var_same_name_cpp_and_c/TestNamespaceLocalVarSameNameCppAndC.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_cpp_and_c/main.cpp b/lldb/test/API/commands/expression/namespace_local_var_same_name_cpp_and_c/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_cpp_and_c/main.cpp
rename to lldb/test/API/commands/expression/namespace_local_var_same_name_cpp_and_c/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_obj_c/Makefile b/lldb/test/API/commands/expression/namespace_local_var_same_name_obj_c/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_obj_c/Makefile
rename to lldb/test/API/commands/expression/namespace_local_var_same_name_obj_c/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_obj_c/TestNamespaceLocalVarSameNameObjC.py b/lldb/test/API/commands/expression/namespace_local_var_same_name_obj_c/TestNamespaceLocalVarSameNameObjC.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_obj_c/TestNamespaceLocalVarSameNameObjC.py
rename to lldb/test/API/commands/expression/namespace_local_var_same_name_obj_c/TestNamespaceLocalVarSameNameObjC.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_obj_c/main.mm b/lldb/test/API/commands/expression/namespace_local_var_same_name_obj_c/main.mm
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_obj_c/main.mm
rename to lldb/test/API/commands/expression/namespace_local_var_same_name_obj_c/main.mm

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_obj_c/util.mm b/lldb/test/API/commands/expression/namespace_local_var_same_name_obj_c/util.mm
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/namespace_local_var_same_name_obj_c/util.mm
rename to lldb/test/API/commands/expression/namespace_local_var_same_name_obj_c/util.mm

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/no-deadlock/Makefile b/lldb/test/API/commands/expression/no-deadlock/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/no-deadlock/Makefile
rename to lldb/test/API/commands/expression/no-deadlock/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/no-deadlock/TestExprDoesntBlock.py b/lldb/test/API/commands/expression/no-deadlock/TestExprDoesntBlock.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/no-deadlock/TestExprDoesntBlock.py
rename to lldb/test/API/commands/expression/no-deadlock/TestExprDoesntBlock.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/no-deadlock/locking.cpp b/lldb/test/API/commands/expression/no-deadlock/locking.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/no-deadlock/locking.cpp
rename to lldb/test/API/commands/expression/no-deadlock/locking.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/options/Makefile b/lldb/test/API/commands/expression/options/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/options/Makefile
rename to lldb/test/API/commands/expression/options/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/options/TestExprOptions.py b/lldb/test/API/commands/expression/options/TestExprOptions.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/options/TestExprOptions.py
rename to lldb/test/API/commands/expression/options/TestExprOptions.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/options/foo.cpp b/lldb/test/API/commands/expression/options/foo.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/options/foo.cpp
rename to lldb/test/API/commands/expression/options/foo.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/options/main.cpp b/lldb/test/API/commands/expression/options/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/options/main.cpp
rename to lldb/test/API/commands/expression/options/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/persist_objc_pointeetype/Makefile b/lldb/test/API/commands/expression/persist_objc_pointeetype/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/persist_objc_pointeetype/Makefile
rename to lldb/test/API/commands/expression/persist_objc_pointeetype/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/persist_objc_pointeetype/TestPersistObjCPointeeType.py b/lldb/test/API/commands/expression/persist_objc_pointeetype/TestPersistObjCPointeeType.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/persist_objc_pointeetype/TestPersistObjCPointeeType.py
rename to lldb/test/API/commands/expression/persist_objc_pointeetype/TestPersistObjCPointeeType.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/persist_objc_pointeetype/main.m b/lldb/test/API/commands/expression/persist_objc_pointeetype/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/persist_objc_pointeetype/main.m
rename to lldb/test/API/commands/expression/persist_objc_pointeetype/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_ptr_update/Makefile b/lldb/test/API/commands/expression/persistent_ptr_update/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/persistent_ptr_update/Makefile
rename to lldb/test/API/commands/expression/persistent_ptr_update/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_ptr_update/TestPersistentPtrUpdate.py b/lldb/test/API/commands/expression/persistent_ptr_update/TestPersistentPtrUpdate.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/persistent_ptr_update/TestPersistentPtrUpdate.py
rename to lldb/test/API/commands/expression/persistent_ptr_update/TestPersistentPtrUpdate.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_ptr_update/main.c b/lldb/test/API/commands/expression/persistent_ptr_update/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/persistent_ptr_update/main.c
rename to lldb/test/API/commands/expression/persistent_ptr_update/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_types/Makefile b/lldb/test/API/commands/expression/persistent_types/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/persistent_types/Makefile
rename to lldb/test/API/commands/expression/persistent_types/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_types/TestNestedPersistentTypes.py b/lldb/test/API/commands/expression/persistent_types/TestNestedPersistentTypes.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/persistent_types/TestNestedPersistentTypes.py
rename to lldb/test/API/commands/expression/persistent_types/TestNestedPersistentTypes.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_types/TestPersistentTypes.py b/lldb/test/API/commands/expression/persistent_types/TestPersistentTypes.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/persistent_types/TestPersistentTypes.py
rename to lldb/test/API/commands/expression/persistent_types/TestPersistentTypes.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_types/main.c b/lldb/test/API/commands/expression/persistent_types/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/persistent_types/main.c
rename to lldb/test/API/commands/expression/persistent_types/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_variables/Makefile b/lldb/test/API/commands/expression/persistent_variables/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/persistent_variables/Makefile
rename to lldb/test/API/commands/expression/persistent_variables/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_variables/TestPersistentVariables.py b/lldb/test/API/commands/expression/persistent_variables/TestPersistentVariables.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/persistent_variables/TestPersistentVariables.py
rename to lldb/test/API/commands/expression/persistent_variables/TestPersistentVariables.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/persistent_variables/main.c b/lldb/test/API/commands/expression/persistent_variables/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/persistent_variables/main.c
rename to lldb/test/API/commands/expression/persistent_variables/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/po_verbosity/Makefile b/lldb/test/API/commands/expression/po_verbosity/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/po_verbosity/Makefile
rename to lldb/test/API/commands/expression/po_verbosity/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/po_verbosity/TestPoVerbosity.py b/lldb/test/API/commands/expression/po_verbosity/TestPoVerbosity.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/po_verbosity/TestPoVerbosity.py
rename to lldb/test/API/commands/expression/po_verbosity/TestPoVerbosity.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/po_verbosity/main.m b/lldb/test/API/commands/expression/po_verbosity/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/po_verbosity/main.m
rename to lldb/test/API/commands/expression/po_verbosity/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/pr35310/Makefile b/lldb/test/API/commands/expression/pr35310/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/pr35310/Makefile
rename to lldb/test/API/commands/expression/pr35310/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/pr35310/TestExprsBug35310.py b/lldb/test/API/commands/expression/pr35310/TestExprsBug35310.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/pr35310/TestExprsBug35310.py
rename to lldb/test/API/commands/expression/pr35310/TestExprsBug35310.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/pr35310/main.cpp b/lldb/test/API/commands/expression/pr35310/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/pr35310/main.cpp
rename to lldb/test/API/commands/expression/pr35310/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/radar_8638051/Makefile b/lldb/test/API/commands/expression/radar_8638051/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/radar_8638051/Makefile
rename to lldb/test/API/commands/expression/radar_8638051/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/radar_8638051/Test8638051.py b/lldb/test/API/commands/expression/radar_8638051/Test8638051.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/radar_8638051/Test8638051.py
rename to lldb/test/API/commands/expression/radar_8638051/Test8638051.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/radar_8638051/main.c b/lldb/test/API/commands/expression/radar_8638051/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/radar_8638051/main.c
rename to lldb/test/API/commands/expression/radar_8638051/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/radar_9531204/Makefile b/lldb/test/API/commands/expression/radar_9531204/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/radar_9531204/Makefile
rename to lldb/test/API/commands/expression/radar_9531204/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/radar_9531204/TestPrintfAfterUp.py b/lldb/test/API/commands/expression/radar_9531204/TestPrintfAfterUp.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/radar_9531204/TestPrintfAfterUp.py
rename to lldb/test/API/commands/expression/radar_9531204/TestPrintfAfterUp.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/radar_9531204/main.c b/lldb/test/API/commands/expression/radar_9531204/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/radar_9531204/main.c
rename to lldb/test/API/commands/expression/radar_9531204/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/radar_9673664/Makefile b/lldb/test/API/commands/expression/radar_9673664/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/radar_9673664/Makefile
rename to lldb/test/API/commands/expression/radar_9673664/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/radar_9673664/TestExprHelpExamples.py b/lldb/test/API/commands/expression/radar_9673664/TestExprHelpExamples.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/radar_9673664/TestExprHelpExamples.py
rename to lldb/test/API/commands/expression/radar_9673664/TestExprHelpExamples.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/radar_9673664/main.c b/lldb/test/API/commands/expression/radar_9673664/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/radar_9673664/main.c
rename to lldb/test/API/commands/expression/radar_9673664/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/rdar42038760/TestScalarURem.py b/lldb/test/API/commands/expression/rdar42038760/TestScalarURem.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/rdar42038760/TestScalarURem.py
rename to lldb/test/API/commands/expression/rdar42038760/TestScalarURem.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/rdar42038760/main.c b/lldb/test/API/commands/expression/rdar42038760/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/rdar42038760/main.c
rename to lldb/test/API/commands/expression/rdar42038760/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/rdar44436068/Test128BitsInteger.py b/lldb/test/API/commands/expression/rdar44436068/Test128BitsInteger.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/rdar44436068/Test128BitsInteger.py
rename to lldb/test/API/commands/expression/rdar44436068/Test128BitsInteger.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/rdar44436068/main.c b/lldb/test/API/commands/expression/rdar44436068/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/rdar44436068/main.c
rename to lldb/test/API/commands/expression/rdar44436068/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/regression-access-function-template-in-record/TestRegressionAccessFunctionTemplateInRecord.py b/lldb/test/API/commands/expression/regression-access-function-template-in-record/TestRegressionAccessFunctionTemplateInRecord.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/regression-access-function-template-in-record/TestRegressionAccessFunctionTemplateInRecord.py
rename to lldb/test/API/commands/expression/regression-access-function-template-in-record/TestRegressionAccessFunctionTemplateInRecord.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/regression-access-function-template-in-record/main.cpp b/lldb/test/API/commands/expression/regression-access-function-template-in-record/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/regression-access-function-template-in-record/main.cpp
rename to lldb/test/API/commands/expression/regression-access-function-template-in-record/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/save_jit_objects/Makefile b/lldb/test/API/commands/expression/save_jit_objects/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/save_jit_objects/Makefile
rename to lldb/test/API/commands/expression/save_jit_objects/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/save_jit_objects/TestSaveJITObjects.py b/lldb/test/API/commands/expression/save_jit_objects/TestSaveJITObjects.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/save_jit_objects/TestSaveJITObjects.py
rename to lldb/test/API/commands/expression/save_jit_objects/TestSaveJITObjects.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/save_jit_objects/main.c b/lldb/test/API/commands/expression/save_jit_objects/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/save_jit_objects/main.c
rename to lldb/test/API/commands/expression/save_jit_objects/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/scoped_enums/Makefile b/lldb/test/API/commands/expression/scoped_enums/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/scoped_enums/Makefile
rename to lldb/test/API/commands/expression/scoped_enums/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/scoped_enums/TestScopedEnumType.py b/lldb/test/API/commands/expression/scoped_enums/TestScopedEnumType.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/scoped_enums/TestScopedEnumType.py
rename to lldb/test/API/commands/expression/scoped_enums/TestScopedEnumType.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/scoped_enums/main.cpp b/lldb/test/API/commands/expression/scoped_enums/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/scoped_enums/main.cpp
rename to lldb/test/API/commands/expression/scoped_enums/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/static-initializers/Makefile b/lldb/test/API/commands/expression/static-initializers/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/static-initializers/Makefile
rename to lldb/test/API/commands/expression/static-initializers/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/static-initializers/TestStaticInitializers.py b/lldb/test/API/commands/expression/static-initializers/TestStaticInitializers.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/static-initializers/TestStaticInitializers.py
rename to lldb/test/API/commands/expression/static-initializers/TestStaticInitializers.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/static-initializers/main.cpp b/lldb/test/API/commands/expression/static-initializers/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/static-initializers/main.cpp
rename to lldb/test/API/commands/expression/static-initializers/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/test/Makefile b/lldb/test/API/commands/expression/test/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/test/Makefile
rename to lldb/test/API/commands/expression/test/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/test/TestExprs.py b/lldb/test/API/commands/expression/test/TestExprs.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/test/TestExprs.py
rename to lldb/test/API/commands/expression/test/TestExprs.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/test/TestExprs2.py b/lldb/test/API/commands/expression/test/TestExprs2.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/test/TestExprs2.py
rename to lldb/test/API/commands/expression/test/TestExprs2.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/test/main.cpp b/lldb/test/API/commands/expression/test/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/test/main.cpp
rename to lldb/test/API/commands/expression/test/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/timeout/Makefile b/lldb/test/API/commands/expression/timeout/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/timeout/Makefile
rename to lldb/test/API/commands/expression/timeout/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/timeout/TestCallWithTimeout.py b/lldb/test/API/commands/expression/timeout/TestCallWithTimeout.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/timeout/TestCallWithTimeout.py
rename to lldb/test/API/commands/expression/timeout/TestCallWithTimeout.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/timeout/wait-a-while.cpp b/lldb/test/API/commands/expression/timeout/wait-a-while.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/timeout/wait-a-while.cpp
rename to lldb/test/API/commands/expression/timeout/wait-a-while.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/top-level/Makefile b/lldb/test/API/commands/expression/top-level/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/top-level/Makefile
rename to lldb/test/API/commands/expression/top-level/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/top-level/TestTopLevelExprs.py b/lldb/test/API/commands/expression/top-level/TestTopLevelExprs.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/top-level/TestTopLevelExprs.py
rename to lldb/test/API/commands/expression/top-level/TestTopLevelExprs.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/top-level/dummy.cpp b/lldb/test/API/commands/expression/top-level/dummy.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/top-level/dummy.cpp
rename to lldb/test/API/commands/expression/top-level/dummy.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/top-level/main.cpp b/lldb/test/API/commands/expression/top-level/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/top-level/main.cpp
rename to lldb/test/API/commands/expression/top-level/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/top-level/test.cpp b/lldb/test/API/commands/expression/top-level/test.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/top-level/test.cpp
rename to lldb/test/API/commands/expression/top-level/test.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/two-files/Makefile b/lldb/test/API/commands/expression/two-files/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/two-files/Makefile
rename to lldb/test/API/commands/expression/two-files/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/two-files/TestObjCTypeQueryFromOtherCompileUnit.py b/lldb/test/API/commands/expression/two-files/TestObjCTypeQueryFromOtherCompileUnit.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/two-files/TestObjCTypeQueryFromOtherCompileUnit.py
rename to lldb/test/API/commands/expression/two-files/TestObjCTypeQueryFromOtherCompileUnit.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/two-files/foo.m b/lldb/test/API/commands/expression/two-files/foo.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/two-files/foo.m
rename to lldb/test/API/commands/expression/two-files/foo.m

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/two-files/main.m b/lldb/test/API/commands/expression/two-files/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/two-files/main.m
rename to lldb/test/API/commands/expression/two-files/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/unicode-in-variable/TestUnicodeInVariable.py b/lldb/test/API/commands/expression/unicode-in-variable/TestUnicodeInVariable.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/unicode-in-variable/TestUnicodeInVariable.py
rename to lldb/test/API/commands/expression/unicode-in-variable/TestUnicodeInVariable.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/unicode-in-variable/main.cpp b/lldb/test/API/commands/expression/unicode-in-variable/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/unicode-in-variable/main.cpp
rename to lldb/test/API/commands/expression/unicode-in-variable/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/unwind_expression/Makefile b/lldb/test/API/commands/expression/unwind_expression/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/unwind_expression/Makefile
rename to lldb/test/API/commands/expression/unwind_expression/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/unwind_expression/TestUnwindExpression.py b/lldb/test/API/commands/expression/unwind_expression/TestUnwindExpression.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/unwind_expression/TestUnwindExpression.py
rename to lldb/test/API/commands/expression/unwind_expression/TestUnwindExpression.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/unwind_expression/main.cpp b/lldb/test/API/commands/expression/unwind_expression/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/unwind_expression/main.cpp
rename to lldb/test/API/commands/expression/unwind_expression/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/vector_of_enums/Makefile b/lldb/test/API/commands/expression/vector_of_enums/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/vector_of_enums/Makefile
rename to lldb/test/API/commands/expression/vector_of_enums/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/vector_of_enums/TestVectorOfEnums.py b/lldb/test/API/commands/expression/vector_of_enums/TestVectorOfEnums.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/vector_of_enums/TestVectorOfEnums.py
rename to lldb/test/API/commands/expression/vector_of_enums/TestVectorOfEnums.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/vector_of_enums/main.cpp b/lldb/test/API/commands/expression/vector_of_enums/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/vector_of_enums/main.cpp
rename to lldb/test/API/commands/expression/vector_of_enums/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/weak_symbols/Makefile b/lldb/test/API/commands/expression/weak_symbols/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/weak_symbols/Makefile
rename to lldb/test/API/commands/expression/weak_symbols/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/weak_symbols/TestWeakSymbols.py b/lldb/test/API/commands/expression/weak_symbols/TestWeakSymbols.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/weak_symbols/TestWeakSymbols.py
rename to lldb/test/API/commands/expression/weak_symbols/TestWeakSymbols.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/weak_symbols/dylib.c b/lldb/test/API/commands/expression/weak_symbols/dylib.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/weak_symbols/dylib.c
rename to lldb/test/API/commands/expression/weak_symbols/dylib.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/weak_symbols/dylib.h b/lldb/test/API/commands/expression/weak_symbols/dylib.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/weak_symbols/dylib.h
rename to lldb/test/API/commands/expression/weak_symbols/dylib.h

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/weak_symbols/main.c b/lldb/test/API/commands/expression/weak_symbols/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/weak_symbols/main.c
rename to lldb/test/API/commands/expression/weak_symbols/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/weak_symbols/module.modulemap b/lldb/test/API/commands/expression/weak_symbols/module.modulemap
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/weak_symbols/module.modulemap
rename to lldb/test/API/commands/expression/weak_symbols/module.modulemap

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/xvalue/Makefile b/lldb/test/API/commands/expression/xvalue/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/xvalue/Makefile
rename to lldb/test/API/commands/expression/xvalue/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/xvalue/TestXValuePrinting.py b/lldb/test/API/commands/expression/xvalue/TestXValuePrinting.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/xvalue/TestXValuePrinting.py
rename to lldb/test/API/commands/expression/xvalue/TestXValuePrinting.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/expression/xvalue/main.cpp b/lldb/test/API/commands/expression/xvalue/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/expression/xvalue/main.cpp
rename to lldb/test/API/commands/expression/xvalue/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/array/Makefile b/lldb/test/API/commands/frame/diagnose/array/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/array/Makefile
rename to lldb/test/API/commands/frame/diagnose/array/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/array/TestArray.py b/lldb/test/API/commands/frame/diagnose/array/TestArray.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/array/TestArray.py
rename to lldb/test/API/commands/frame/diagnose/array/TestArray.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/array/main.c b/lldb/test/API/commands/frame/diagnose/array/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/array/main.c
rename to lldb/test/API/commands/frame/diagnose/array/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/bad-reference/Makefile b/lldb/test/API/commands/frame/diagnose/bad-reference/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/bad-reference/Makefile
rename to lldb/test/API/commands/frame/diagnose/bad-reference/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/bad-reference/TestBadReference.py b/lldb/test/API/commands/frame/diagnose/bad-reference/TestBadReference.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/bad-reference/TestBadReference.py
rename to lldb/test/API/commands/frame/diagnose/bad-reference/TestBadReference.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/bad-reference/main.cpp b/lldb/test/API/commands/frame/diagnose/bad-reference/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/bad-reference/main.cpp
rename to lldb/test/API/commands/frame/diagnose/bad-reference/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/complicated-expression/Makefile b/lldb/test/API/commands/frame/diagnose/complicated-expression/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/complicated-expression/Makefile
rename to lldb/test/API/commands/frame/diagnose/complicated-expression/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/complicated-expression/TestComplicatedExpression.py b/lldb/test/API/commands/frame/diagnose/complicated-expression/TestComplicatedExpression.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/complicated-expression/TestComplicatedExpression.py
rename to lldb/test/API/commands/frame/diagnose/complicated-expression/TestComplicatedExpression.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/complicated-expression/main.c b/lldb/test/API/commands/frame/diagnose/complicated-expression/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/complicated-expression/main.c
rename to lldb/test/API/commands/frame/diagnose/complicated-expression/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-argument/Makefile b/lldb/test/API/commands/frame/diagnose/dereference-argument/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-argument/Makefile
rename to lldb/test/API/commands/frame/diagnose/dereference-argument/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-argument/TestDiagnoseDereferenceArgument.py b/lldb/test/API/commands/frame/diagnose/dereference-argument/TestDiagnoseDereferenceArgument.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-argument/TestDiagnoseDereferenceArgument.py
rename to lldb/test/API/commands/frame/diagnose/dereference-argument/TestDiagnoseDereferenceArgument.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-argument/main.c b/lldb/test/API/commands/frame/diagnose/dereference-argument/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-argument/main.c
rename to lldb/test/API/commands/frame/diagnose/dereference-argument/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-function-return/Makefile b/lldb/test/API/commands/frame/diagnose/dereference-function-return/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-function-return/Makefile
rename to lldb/test/API/commands/frame/diagnose/dereference-function-return/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-function-return/TestDiagnoseDereferenceFunctionReturn.py b/lldb/test/API/commands/frame/diagnose/dereference-function-return/TestDiagnoseDereferenceFunctionReturn.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-function-return/TestDiagnoseDereferenceFunctionReturn.py
rename to lldb/test/API/commands/frame/diagnose/dereference-function-return/TestDiagnoseDereferenceFunctionReturn.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-function-return/main.c b/lldb/test/API/commands/frame/diagnose/dereference-function-return/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-function-return/main.c
rename to lldb/test/API/commands/frame/diagnose/dereference-function-return/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-this/Makefile b/lldb/test/API/commands/frame/diagnose/dereference-this/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-this/Makefile
rename to lldb/test/API/commands/frame/diagnose/dereference-this/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-this/TestDiagnoseDereferenceThis.py b/lldb/test/API/commands/frame/diagnose/dereference-this/TestDiagnoseDereferenceThis.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-this/TestDiagnoseDereferenceThis.py
rename to lldb/test/API/commands/frame/diagnose/dereference-this/TestDiagnoseDereferenceThis.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-this/main.cpp b/lldb/test/API/commands/frame/diagnose/dereference-this/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-this/main.cpp
rename to lldb/test/API/commands/frame/diagnose/dereference-this/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/inheritance/Makefile b/lldb/test/API/commands/frame/diagnose/inheritance/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/inheritance/Makefile
rename to lldb/test/API/commands/frame/diagnose/inheritance/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/inheritance/TestDiagnoseInheritance.py b/lldb/test/API/commands/frame/diagnose/inheritance/TestDiagnoseInheritance.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/inheritance/TestDiagnoseInheritance.py
rename to lldb/test/API/commands/frame/diagnose/inheritance/TestDiagnoseInheritance.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/inheritance/main.cpp b/lldb/test/API/commands/frame/diagnose/inheritance/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/inheritance/main.cpp
rename to lldb/test/API/commands/frame/diagnose/inheritance/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/local-variable/Makefile b/lldb/test/API/commands/frame/diagnose/local-variable/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/local-variable/Makefile
rename to lldb/test/API/commands/frame/diagnose/local-variable/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/local-variable/TestLocalVariable.py b/lldb/test/API/commands/frame/diagnose/local-variable/TestLocalVariable.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/local-variable/TestLocalVariable.py
rename to lldb/test/API/commands/frame/diagnose/local-variable/TestLocalVariable.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/local-variable/main.c b/lldb/test/API/commands/frame/diagnose/local-variable/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/local-variable/main.c
rename to lldb/test/API/commands/frame/diagnose/local-variable/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/virtual-method-call/Makefile b/lldb/test/API/commands/frame/diagnose/virtual-method-call/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/virtual-method-call/Makefile
rename to lldb/test/API/commands/frame/diagnose/virtual-method-call/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/virtual-method-call/TestDiagnoseDereferenceVirtualMethodCall.py b/lldb/test/API/commands/frame/diagnose/virtual-method-call/TestDiagnoseDereferenceVirtualMethodCall.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/virtual-method-call/TestDiagnoseDereferenceVirtualMethodCall.py
rename to lldb/test/API/commands/frame/diagnose/virtual-method-call/TestDiagnoseDereferenceVirtualMethodCall.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/virtual-method-call/main.cpp b/lldb/test/API/commands/frame/diagnose/virtual-method-call/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/virtual-method-call/main.cpp
rename to lldb/test/API/commands/frame/diagnose/virtual-method-call/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/language/Makefile b/lldb/test/API/commands/frame/language/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/language/Makefile
rename to lldb/test/API/commands/frame/language/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/language/TestGuessLanguage.py b/lldb/test/API/commands/frame/language/TestGuessLanguage.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/language/TestGuessLanguage.py
rename to lldb/test/API/commands/frame/language/TestGuessLanguage.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/language/main.cpp b/lldb/test/API/commands/frame/language/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/language/main.cpp
rename to lldb/test/API/commands/frame/language/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/language/other-2.cpp b/lldb/test/API/commands/frame/language/other-2.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/language/other-2.cpp
rename to lldb/test/API/commands/frame/language/other-2.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/language/other.cpp b/lldb/test/API/commands/frame/language/other.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/language/other.cpp
rename to lldb/test/API/commands/frame/language/other.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/language/other.h b/lldb/test/API/commands/frame/language/other.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/language/other.h
rename to lldb/test/API/commands/frame/language/other.h

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/language/somefunc.c b/lldb/test/API/commands/frame/language/somefunc.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/language/somefunc.c
rename to lldb/test/API/commands/frame/language/somefunc.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/recognizer/Makefile b/lldb/test/API/commands/frame/recognizer/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/recognizer/Makefile
rename to lldb/test/API/commands/frame/recognizer/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/recognizer/TestFrameRecognizer.py b/lldb/test/API/commands/frame/recognizer/TestFrameRecognizer.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/recognizer/TestFrameRecognizer.py
rename to lldb/test/API/commands/frame/recognizer/TestFrameRecognizer.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/recognizer/main.m b/lldb/test/API/commands/frame/recognizer/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/recognizer/main.m
rename to lldb/test/API/commands/frame/recognizer/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/recognizer/recognizer.py b/lldb/test/API/commands/frame/recognizer/recognizer.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/recognizer/recognizer.py
rename to lldb/test/API/commands/frame/recognizer/recognizer.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/select/Makefile b/lldb/test/API/commands/frame/select/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/select/Makefile
rename to lldb/test/API/commands/frame/select/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/select/TestFrameSelect.py b/lldb/test/API/commands/frame/select/TestFrameSelect.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/select/TestFrameSelect.py
rename to lldb/test/API/commands/frame/select/TestFrameSelect.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/select/main.cpp b/lldb/test/API/commands/frame/select/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/select/main.cpp
rename to lldb/test/API/commands/frame/select/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/var-scope/TestFrameVariableScope.py b/lldb/test/API/commands/frame/var-scope/TestFrameVariableScope.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/var-scope/TestFrameVariableScope.py
rename to lldb/test/API/commands/frame/var-scope/TestFrameVariableScope.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/var-scope/main.c b/lldb/test/API/commands/frame/var-scope/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/var-scope/main.c
rename to lldb/test/API/commands/frame/var-scope/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/var/Makefile b/lldb/test/API/commands/frame/var/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/var/Makefile
rename to lldb/test/API/commands/frame/var/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/var/TestFrameVar.py b/lldb/test/API/commands/frame/var/TestFrameVar.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/var/TestFrameVar.py
rename to lldb/test/API/commands/frame/var/TestFrameVar.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/frame/var/main.c b/lldb/test/API/commands/frame/var/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/frame/var/main.c
rename to lldb/test/API/commands/frame/var/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/gui/basic/Makefile b/lldb/test/API/commands/gui/basic/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/gui/basic/Makefile
rename to lldb/test/API/commands/gui/basic/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/gui/basic/TestGuiBasic.py b/lldb/test/API/commands/gui/basic/TestGuiBasic.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/gui/basic/TestGuiBasic.py
rename to lldb/test/API/commands/gui/basic/TestGuiBasic.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/gui/basic/main.c b/lldb/test/API/commands/gui/basic/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/gui/basic/main.c
rename to lldb/test/API/commands/gui/basic/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/gui/invalid-args/TestInvalidArgsGui.py b/lldb/test/API/commands/gui/invalid-args/TestInvalidArgsGui.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/gui/invalid-args/TestInvalidArgsGui.py
rename to lldb/test/API/commands/gui/invalid-args/TestInvalidArgsGui.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/help/TestHelp.py b/lldb/test/API/commands/help/TestHelp.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/help/TestHelp.py
rename to lldb/test/API/commands/help/TestHelp.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/log/basic/Makefile b/lldb/test/API/commands/log/basic/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/log/basic/Makefile
rename to lldb/test/API/commands/log/basic/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/log/basic/TestLogging.py b/lldb/test/API/commands/log/basic/TestLogging.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/log/basic/TestLogging.py
rename to lldb/test/API/commands/log/basic/TestLogging.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/log/basic/main.cpp b/lldb/test/API/commands/log/basic/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/log/basic/main.cpp
rename to lldb/test/API/commands/log/basic/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/log/invalid-args/TestInvalidArgsLog.py b/lldb/test/API/commands/log/invalid-args/TestInvalidArgsLog.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/log/invalid-args/TestInvalidArgsLog.py
rename to lldb/test/API/commands/log/invalid-args/TestInvalidArgsLog.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/platform/basic/TestPlatformCommand.py b/lldb/test/API/commands/platform/basic/TestPlatformCommand.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/platform/basic/TestPlatformCommand.py
rename to lldb/test/API/commands/platform/basic/TestPlatformCommand.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/platform/basic/TestPlatformPython.py b/lldb/test/API/commands/platform/basic/TestPlatformPython.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/platform/basic/TestPlatformPython.py
rename to lldb/test/API/commands/platform/basic/TestPlatformPython.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/platform/process/Makefile b/lldb/test/API/commands/platform/process/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/platform/process/Makefile
rename to lldb/test/API/commands/platform/process/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/platform/process/TestProcessList.py b/lldb/test/API/commands/platform/process/TestProcessList.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/platform/process/TestProcessList.py
rename to lldb/test/API/commands/platform/process/TestProcessList.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/platform/process/main.cpp b/lldb/test/API/commands/platform/process/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/platform/process/main.cpp
rename to lldb/test/API/commands/platform/process/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/process/attach-resume/Makefile b/lldb/test/API/commands/process/attach-resume/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/process/attach-resume/Makefile
rename to lldb/test/API/commands/process/attach-resume/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/process/attach-resume/TestAttachResume.py b/lldb/test/API/commands/process/attach-resume/TestAttachResume.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/process/attach-resume/TestAttachResume.py
rename to lldb/test/API/commands/process/attach-resume/TestAttachResume.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/process/attach-resume/main.cpp b/lldb/test/API/commands/process/attach-resume/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/process/attach-resume/main.cpp
rename to lldb/test/API/commands/process/attach-resume/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/process/attach/Makefile b/lldb/test/API/commands/process/attach/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/process/attach/Makefile
rename to lldb/test/API/commands/process/attach/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/process/attach/TestProcessAttach.py b/lldb/test/API/commands/process/attach/TestProcessAttach.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/process/attach/TestProcessAttach.py
rename to lldb/test/API/commands/process/attach/TestProcessAttach.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/process/attach/attach_denied/Makefile b/lldb/test/API/commands/process/attach/attach_denied/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/process/attach/attach_denied/Makefile
rename to lldb/test/API/commands/process/attach/attach_denied/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/process/attach/attach_denied/TestAttachDenied.py b/lldb/test/API/commands/process/attach/attach_denied/TestAttachDenied.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/process/attach/attach_denied/TestAttachDenied.py
rename to lldb/test/API/commands/process/attach/attach_denied/TestAttachDenied.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/process/attach/attach_denied/entitlements.plist b/lldb/test/API/commands/process/attach/attach_denied/entitlements.plist
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/process/attach/attach_denied/entitlements.plist
rename to lldb/test/API/commands/process/attach/attach_denied/entitlements.plist

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/process/attach/attach_denied/main.cpp b/lldb/test/API/commands/process/attach/attach_denied/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/process/attach/attach_denied/main.cpp
rename to lldb/test/API/commands/process/attach/attach_denied/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/process/attach/main.cpp b/lldb/test/API/commands/process/attach/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/process/attach/main.cpp
rename to lldb/test/API/commands/process/attach/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/Makefile b/lldb/test/API/commands/process/launch-with-shellexpand/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/Makefile
rename to lldb/test/API/commands/process/launch-with-shellexpand/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/TestLaunchWithShellExpand.py b/lldb/test/API/commands/process/launch-with-shellexpand/TestLaunchWithShellExpand.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/TestLaunchWithShellExpand.py
rename to lldb/test/API/commands/process/launch-with-shellexpand/TestLaunchWithShellExpand.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/file1.txt b/lldb/test/API/commands/process/launch-with-shellexpand/file1.txt
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/file1.txt
rename to lldb/test/API/commands/process/launch-with-shellexpand/file1.txt

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/file2.txt b/lldb/test/API/commands/process/launch-with-shellexpand/file2.txt
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/file2.txt
rename to lldb/test/API/commands/process/launch-with-shellexpand/file2.txt

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/file3.txt b/lldb/test/API/commands/process/launch-with-shellexpand/file3.txt
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/file3.txt
rename to lldb/test/API/commands/process/launch-with-shellexpand/file3.txt

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/file4.txy b/lldb/test/API/commands/process/launch-with-shellexpand/file4.txy
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/file4.txy
rename to lldb/test/API/commands/process/launch-with-shellexpand/file4.txy

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/file5.tyx b/lldb/test/API/commands/process/launch-with-shellexpand/file5.tyx
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/file5.tyx
rename to lldb/test/API/commands/process/launch-with-shellexpand/file5.tyx

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/foo bar b/lldb/test/API/commands/process/launch-with-shellexpand/foo bar
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/foo bar
rename to lldb/test/API/commands/process/launch-with-shellexpand/foo bar

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/main.cpp b/lldb/test/API/commands/process/launch-with-shellexpand/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/main.cpp
rename to lldb/test/API/commands/process/launch-with-shellexpand/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/process/launch/Makefile b/lldb/test/API/commands/process/launch/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/process/launch/Makefile
rename to lldb/test/API/commands/process/launch/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/process/launch/TestProcessLaunch.py b/lldb/test/API/commands/process/launch/TestProcessLaunch.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/process/launch/TestProcessLaunch.py
rename to lldb/test/API/commands/process/launch/TestProcessLaunch.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/process/launch/input-file.txt b/lldb/test/API/commands/process/launch/input-file.txt
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/process/launch/input-file.txt
rename to lldb/test/API/commands/process/launch/input-file.txt

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/process/launch/main.cpp b/lldb/test/API/commands/process/launch/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/process/launch/main.cpp
rename to lldb/test/API/commands/process/launch/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/process/launch/print_cwd.cpp b/lldb/test/API/commands/process/launch/print_cwd.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/process/launch/print_cwd.cpp
rename to lldb/test/API/commands/process/launch/print_cwd.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/process/launch/print_env.cpp b/lldb/test/API/commands/process/launch/print_env.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/process/launch/print_env.cpp
rename to lldb/test/API/commands/process/launch/print_env.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/quit/TestQuit.py b/lldb/test/API/commands/quit/TestQuit.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/quit/TestQuit.py
rename to lldb/test/API/commands/quit/TestQuit.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/Makefile b/lldb/test/API/commands/register/register/intel_xtended_registers/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/Makefile
rename to lldb/test/API/commands/register/register/intel_xtended_registers/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/TestMPXRegisters.py b/lldb/test/API/commands/register/register/intel_xtended_registers/TestMPXRegisters.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/TestMPXRegisters.py
rename to lldb/test/API/commands/register/register/intel_xtended_registers/TestMPXRegisters.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/main.cpp b/lldb/test/API/commands/register/register/intel_xtended_registers/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/main.cpp
rename to lldb/test/API/commands/register/register/intel_xtended_registers/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/mpx_bound_violation/Makefile b/lldb/test/API/commands/register/register/intel_xtended_registers/mpx_bound_violation/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/mpx_bound_violation/Makefile
rename to lldb/test/API/commands/register/register/intel_xtended_registers/mpx_bound_violation/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/mpx_bound_violation/TestBoundViolation.py b/lldb/test/API/commands/register/register/intel_xtended_registers/mpx_bound_violation/TestBoundViolation.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/mpx_bound_violation/TestBoundViolation.py
rename to lldb/test/API/commands/register/register/intel_xtended_registers/mpx_bound_violation/TestBoundViolation.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/mpx_bound_violation/main.cpp b/lldb/test/API/commands/register/register/intel_xtended_registers/mpx_bound_violation/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/mpx_bound_violation/main.cpp
rename to lldb/test/API/commands/register/register/intel_xtended_registers/mpx_bound_violation/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/mpx_offset_intersection/Makefile b/lldb/test/API/commands/register/register/intel_xtended_registers/mpx_offset_intersection/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/mpx_offset_intersection/Makefile
rename to lldb/test/API/commands/register/register/intel_xtended_registers/mpx_offset_intersection/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/mpx_offset_intersection/TestMPXOffsetIntersection.py b/lldb/test/API/commands/register/register/intel_xtended_registers/mpx_offset_intersection/TestMPXOffsetIntersection.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/mpx_offset_intersection/TestMPXOffsetIntersection.py
rename to lldb/test/API/commands/register/register/intel_xtended_registers/mpx_offset_intersection/TestMPXOffsetIntersection.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/mpx_offset_intersection/main.cpp b/lldb/test/API/commands/register/register/intel_xtended_registers/mpx_offset_intersection/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/mpx_offset_intersection/main.cpp
rename to lldb/test/API/commands/register/register/intel_xtended_registers/mpx_offset_intersection/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/register/register/register_command/Makefile b/lldb/test/API/commands/register/register/register_command/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/register/register/register_command/Makefile
rename to lldb/test/API/commands/register/register/register_command/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/register/register/register_command/TestRegisters.py b/lldb/test/API/commands/register/register/register_command/TestRegisters.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/register/register/register_command/TestRegisters.py
rename to lldb/test/API/commands/register/register/register_command/TestRegisters.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/register/register/register_command/a.cpp b/lldb/test/API/commands/register/register/register_command/a.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/register/register/register_command/a.cpp
rename to lldb/test/API/commands/register/register/register_command/a.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/register/register/register_command/main.cpp b/lldb/test/API/commands/register/register/register_command/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/register/register/register_command/main.cpp
rename to lldb/test/API/commands/register/register/register_command/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/reproducer/invalid-args/TestInvalidArgsReproducer.py b/lldb/test/API/commands/reproducer/invalid-args/TestInvalidArgsReproducer.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/reproducer/invalid-args/TestInvalidArgsReproducer.py
rename to lldb/test/API/commands/reproducer/invalid-args/TestInvalidArgsReproducer.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/settings/Makefile b/lldb/test/API/commands/settings/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/settings/Makefile
rename to lldb/test/API/commands/settings/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/settings/TestSettings.py b/lldb/test/API/commands/settings/TestSettings.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/settings/TestSettings.py
rename to lldb/test/API/commands/settings/TestSettings.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/settings/main.cpp b/lldb/test/API/commands/settings/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/settings/main.cpp
rename to lldb/test/API/commands/settings/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/settings/quoting/Makefile b/lldb/test/API/commands/settings/quoting/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/settings/quoting/Makefile
rename to lldb/test/API/commands/settings/quoting/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/settings/quoting/TestQuoting.py b/lldb/test/API/commands/settings/quoting/TestQuoting.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/settings/quoting/TestQuoting.py
rename to lldb/test/API/commands/settings/quoting/TestQuoting.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/settings/quoting/main.c b/lldb/test/API/commands/settings/quoting/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/settings/quoting/main.c
rename to lldb/test/API/commands/settings/quoting/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/source/info/TestSourceInfo.py b/lldb/test/API/commands/source/info/TestSourceInfo.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/source/info/TestSourceInfo.py
rename to lldb/test/API/commands/source/info/TestSourceInfo.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/source/info/main.cpp b/lldb/test/API/commands/source/info/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/source/info/main.cpp
rename to lldb/test/API/commands/source/info/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/source/info/second.cpp b/lldb/test/API/commands/source/info/second.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/source/info/second.cpp
rename to lldb/test/API/commands/source/info/second.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/statistics/basic/TestStats.py b/lldb/test/API/commands/statistics/basic/TestStats.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/statistics/basic/TestStats.py
rename to lldb/test/API/commands/statistics/basic/TestStats.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/statistics/basic/main.c b/lldb/test/API/commands/statistics/basic/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/statistics/basic/main.c
rename to lldb/test/API/commands/statistics/basic/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/target/auto-install-main-executable/Makefile b/lldb/test/API/commands/target/auto-install-main-executable/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/target/auto-install-main-executable/Makefile
rename to lldb/test/API/commands/target/auto-install-main-executable/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/target/auto-install-main-executable/TestAutoInstallMainExecutable.py b/lldb/test/API/commands/target/auto-install-main-executable/TestAutoInstallMainExecutable.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/target/auto-install-main-executable/TestAutoInstallMainExecutable.py
rename to lldb/test/API/commands/target/auto-install-main-executable/TestAutoInstallMainExecutable.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/target/auto-install-main-executable/main.cpp b/lldb/test/API/commands/target/auto-install-main-executable/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/target/auto-install-main-executable/main.cpp
rename to lldb/test/API/commands/target/auto-install-main-executable/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/target/basic/Makefile b/lldb/test/API/commands/target/basic/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/target/basic/Makefile
rename to lldb/test/API/commands/target/basic/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/target/basic/TestTargetCommand.py b/lldb/test/API/commands/target/basic/TestTargetCommand.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/target/basic/TestTargetCommand.py
rename to lldb/test/API/commands/target/basic/TestTargetCommand.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/target/basic/a.c b/lldb/test/API/commands/target/basic/a.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/target/basic/a.c
rename to lldb/test/API/commands/target/basic/a.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/target/basic/b.c b/lldb/test/API/commands/target/basic/b.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/target/basic/b.c
rename to lldb/test/API/commands/target/basic/b.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/target/basic/c.c b/lldb/test/API/commands/target/basic/c.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/target/basic/c.c
rename to lldb/test/API/commands/target/basic/c.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/target/basic/globals.c b/lldb/test/API/commands/target/basic/globals.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/target/basic/globals.c
rename to lldb/test/API/commands/target/basic/globals.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/target/basic/invalid_core_file b/lldb/test/API/commands/target/basic/invalid_core_file
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/target/basic/invalid_core_file
rename to lldb/test/API/commands/target/basic/invalid_core_file

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/target/create-deps/Makefile b/lldb/test/API/commands/target/create-deps/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/target/create-deps/Makefile
rename to lldb/test/API/commands/target/create-deps/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/target/create-deps/TestTargetCreateDeps.py b/lldb/test/API/commands/target/create-deps/TestTargetCreateDeps.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/target/create-deps/TestTargetCreateDeps.py
rename to lldb/test/API/commands/target/create-deps/TestTargetCreateDeps.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/target/create-deps/a.cpp b/lldb/test/API/commands/target/create-deps/a.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/target/create-deps/a.cpp
rename to lldb/test/API/commands/target/create-deps/a.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/target/create-deps/main.cpp b/lldb/test/API/commands/target/create-deps/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/target/create-deps/main.cpp
rename to lldb/test/API/commands/target/create-deps/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/target/create-no-such-arch/Makefile b/lldb/test/API/commands/target/create-no-such-arch/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/target/create-no-such-arch/Makefile
rename to lldb/test/API/commands/target/create-no-such-arch/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/target/create-no-such-arch/TestNoSuchArch.py b/lldb/test/API/commands/target/create-no-such-arch/TestNoSuchArch.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/target/create-no-such-arch/TestNoSuchArch.py
rename to lldb/test/API/commands/target/create-no-such-arch/TestNoSuchArch.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/target/create-no-such-arch/main.cpp b/lldb/test/API/commands/target/create-no-such-arch/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/target/create-no-such-arch/main.cpp
rename to lldb/test/API/commands/target/create-no-such-arch/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/target/dump-symtab-demangle/TestDumpSymtabDemangle.py b/lldb/test/API/commands/target/dump-symtab-demangle/TestDumpSymtabDemangle.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/target/dump-symtab-demangle/TestDumpSymtabDemangle.py
rename to lldb/test/API/commands/target/dump-symtab-demangle/TestDumpSymtabDemangle.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/target/dump-symtab-demangle/a.yaml b/lldb/test/API/commands/target/dump-symtab-demangle/a.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/target/dump-symtab-demangle/a.yaml
rename to lldb/test/API/commands/target/dump-symtab-demangle/a.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/target/stop-hooks/Makefile b/lldb/test/API/commands/target/stop-hooks/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/target/stop-hooks/Makefile
rename to lldb/test/API/commands/target/stop-hooks/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/target/stop-hooks/TestStopHooks.py b/lldb/test/API/commands/target/stop-hooks/TestStopHooks.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/target/stop-hooks/TestStopHooks.py
rename to lldb/test/API/commands/target/stop-hooks/TestStopHooks.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/target/stop-hooks/main.c b/lldb/test/API/commands/target/stop-hooks/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/target/stop-hooks/main.c
rename to lldb/test/API/commands/target/stop-hooks/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/version/TestVersion.py b/lldb/test/API/commands/version/TestVersion.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/version/TestVersion.py
rename to lldb/test/API/commands/version/TestVersion.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/.categories b/lldb/test/API/commands/watchpoints/.categories
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/.categories
rename to lldb/test/API/commands/watchpoints/.categories

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchlocation/Makefile b/lldb/test/API/commands/watchpoints/hello_watchlocation/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchlocation/Makefile
rename to lldb/test/API/commands/watchpoints/hello_watchlocation/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchlocation/TestWatchLocation.py b/lldb/test/API/commands/watchpoints/hello_watchlocation/TestWatchLocation.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchlocation/TestWatchLocation.py
rename to lldb/test/API/commands/watchpoints/hello_watchlocation/TestWatchLocation.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchlocation/main.cpp b/lldb/test/API/commands/watchpoints/hello_watchlocation/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchlocation/main.cpp
rename to lldb/test/API/commands/watchpoints/hello_watchlocation/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchpoint/Makefile b/lldb/test/API/commands/watchpoints/hello_watchpoint/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchpoint/Makefile
rename to lldb/test/API/commands/watchpoints/hello_watchpoint/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchpoint/TestMyFirstWatchpoint.py b/lldb/test/API/commands/watchpoints/hello_watchpoint/TestMyFirstWatchpoint.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchpoint/TestMyFirstWatchpoint.py
rename to lldb/test/API/commands/watchpoints/hello_watchpoint/TestMyFirstWatchpoint.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchpoint/main.c b/lldb/test/API/commands/watchpoints/hello_watchpoint/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchpoint/main.c
rename to lldb/test/API/commands/watchpoints/hello_watchpoint/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/multi_watchpoint_slots/Makefile b/lldb/test/API/commands/watchpoints/multi_watchpoint_slots/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/multi_watchpoint_slots/Makefile
rename to lldb/test/API/commands/watchpoints/multi_watchpoint_slots/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/multi_watchpoint_slots/TestWatchpointMultipleSlots.py b/lldb/test/API/commands/watchpoints/multi_watchpoint_slots/TestWatchpointMultipleSlots.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/multi_watchpoint_slots/TestWatchpointMultipleSlots.py
rename to lldb/test/API/commands/watchpoints/multi_watchpoint_slots/TestWatchpointMultipleSlots.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/multi_watchpoint_slots/main.c b/lldb/test/API/commands/watchpoints/multi_watchpoint_slots/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/multi_watchpoint_slots/main.c
rename to lldb/test/API/commands/watchpoints/multi_watchpoint_slots/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/multiple_hits/Makefile b/lldb/test/API/commands/watchpoints/multiple_hits/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/multiple_hits/Makefile
rename to lldb/test/API/commands/watchpoints/multiple_hits/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/multiple_hits/TestMultipleHits.py b/lldb/test/API/commands/watchpoints/multiple_hits/TestMultipleHits.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/multiple_hits/TestMultipleHits.py
rename to lldb/test/API/commands/watchpoints/multiple_hits/TestMultipleHits.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/multiple_hits/main.cpp b/lldb/test/API/commands/watchpoints/multiple_hits/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/multiple_hits/main.cpp
rename to lldb/test/API/commands/watchpoints/multiple_hits/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/multiple_threads/Makefile b/lldb/test/API/commands/watchpoints/multiple_threads/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/multiple_threads/Makefile
rename to lldb/test/API/commands/watchpoints/multiple_threads/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/multiple_threads/TestWatchpointMultipleThreads.py b/lldb/test/API/commands/watchpoints/multiple_threads/TestWatchpointMultipleThreads.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/multiple_threads/TestWatchpointMultipleThreads.py
rename to lldb/test/API/commands/watchpoints/multiple_threads/TestWatchpointMultipleThreads.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/multiple_threads/main.cpp b/lldb/test/API/commands/watchpoints/multiple_threads/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/multiple_threads/main.cpp
rename to lldb/test/API/commands/watchpoints/multiple_threads/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/step_over_watchpoint/Makefile b/lldb/test/API/commands/watchpoints/step_over_watchpoint/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/step_over_watchpoint/Makefile
rename to lldb/test/API/commands/watchpoints/step_over_watchpoint/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/step_over_watchpoint/TestStepOverWatchpoint.py b/lldb/test/API/commands/watchpoints/step_over_watchpoint/TestStepOverWatchpoint.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/step_over_watchpoint/TestStepOverWatchpoint.py
rename to lldb/test/API/commands/watchpoints/step_over_watchpoint/TestStepOverWatchpoint.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/step_over_watchpoint/main.c b/lldb/test/API/commands/watchpoints/step_over_watchpoint/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/step_over_watchpoint/main.c
rename to lldb/test/API/commands/watchpoints/step_over_watchpoint/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/variable_out_of_scope/Makefile b/lldb/test/API/commands/watchpoints/variable_out_of_scope/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/variable_out_of_scope/Makefile
rename to lldb/test/API/commands/watchpoints/variable_out_of_scope/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/variable_out_of_scope/TestWatchedVarHitWhenInScope.py b/lldb/test/API/commands/watchpoints/variable_out_of_scope/TestWatchedVarHitWhenInScope.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/variable_out_of_scope/TestWatchedVarHitWhenInScope.py
rename to lldb/test/API/commands/watchpoints/variable_out_of_scope/TestWatchedVarHitWhenInScope.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/variable_out_of_scope/main.c b/lldb/test/API/commands/watchpoints/variable_out_of_scope/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/variable_out_of_scope/main.c
rename to lldb/test/API/commands/watchpoints/variable_out_of_scope/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/Makefile b/lldb/test/API/commands/watchpoints/watchpoint_commands/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/Makefile
rename to lldb/test/API/commands/watchpoints/watchpoint_commands/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/TestWatchpointCommands.py b/lldb/test/API/commands/watchpoints/watchpoint_commands/TestWatchpointCommands.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/TestWatchpointCommands.py
rename to lldb/test/API/commands/watchpoints/watchpoint_commands/TestWatchpointCommands.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/command/Makefile b/lldb/test/API/commands/watchpoints/watchpoint_commands/command/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/command/Makefile
rename to lldb/test/API/commands/watchpoints/watchpoint_commands/command/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/command/TestWatchpointCommandLLDB.py b/lldb/test/API/commands/watchpoints/watchpoint_commands/command/TestWatchpointCommandLLDB.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/command/TestWatchpointCommandLLDB.py
rename to lldb/test/API/commands/watchpoints/watchpoint_commands/command/TestWatchpointCommandLLDB.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/command/TestWatchpointCommandPython.py b/lldb/test/API/commands/watchpoints/watchpoint_commands/command/TestWatchpointCommandPython.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/command/TestWatchpointCommandPython.py
rename to lldb/test/API/commands/watchpoints/watchpoint_commands/command/TestWatchpointCommandPython.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/command/main.cpp b/lldb/test/API/commands/watchpoints/watchpoint_commands/command/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/command/main.cpp
rename to lldb/test/API/commands/watchpoints/watchpoint_commands/command/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/command/watchpoint_command.py b/lldb/test/API/commands/watchpoints/watchpoint_commands/command/watchpoint_command.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/command/watchpoint_command.py
rename to lldb/test/API/commands/watchpoints/watchpoint_commands/command/watchpoint_command.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/condition/Makefile b/lldb/test/API/commands/watchpoints/watchpoint_commands/condition/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/condition/Makefile
rename to lldb/test/API/commands/watchpoints/watchpoint_commands/condition/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/condition/TestWatchpointConditionCmd.py b/lldb/test/API/commands/watchpoints/watchpoint_commands/condition/TestWatchpointConditionCmd.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/condition/TestWatchpointConditionCmd.py
rename to lldb/test/API/commands/watchpoints/watchpoint_commands/condition/TestWatchpointConditionCmd.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/condition/main.cpp b/lldb/test/API/commands/watchpoints/watchpoint_commands/condition/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/condition/main.cpp
rename to lldb/test/API/commands/watchpoints/watchpoint_commands/condition/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/main.c b/lldb/test/API/commands/watchpoints/watchpoint_commands/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/main.c
rename to lldb/test/API/commands/watchpoints/watchpoint_commands/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_disable/Makefile b/lldb/test/API/commands/watchpoints/watchpoint_disable/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_disable/Makefile
rename to lldb/test/API/commands/watchpoints/watchpoint_disable/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_disable/TestWatchpointDisable.py b/lldb/test/API/commands/watchpoints/watchpoint_disable/TestWatchpointDisable.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_disable/TestWatchpointDisable.py
rename to lldb/test/API/commands/watchpoints/watchpoint_disable/TestWatchpointDisable.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_disable/main.c b/lldb/test/API/commands/watchpoints/watchpoint_disable/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_disable/main.c
rename to lldb/test/API/commands/watchpoints/watchpoint_disable/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_events/Makefile b/lldb/test/API/commands/watchpoints/watchpoint_events/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_events/Makefile
rename to lldb/test/API/commands/watchpoints/watchpoint_events/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_events/TestWatchpointEvents.py b/lldb/test/API/commands/watchpoints/watchpoint_events/TestWatchpointEvents.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_events/TestWatchpointEvents.py
rename to lldb/test/API/commands/watchpoints/watchpoint_events/TestWatchpointEvents.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_events/main.c b/lldb/test/API/commands/watchpoints/watchpoint_events/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_events/main.c
rename to lldb/test/API/commands/watchpoints/watchpoint_events/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_on_vectors/Makefile b/lldb/test/API/commands/watchpoints/watchpoint_on_vectors/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_on_vectors/Makefile
rename to lldb/test/API/commands/watchpoints/watchpoint_on_vectors/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_on_vectors/TestValueOfVectorVariable.py b/lldb/test/API/commands/watchpoints/watchpoint_on_vectors/TestValueOfVectorVariable.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_on_vectors/TestValueOfVectorVariable.py
rename to lldb/test/API/commands/watchpoints/watchpoint_on_vectors/TestValueOfVectorVariable.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_on_vectors/main.c b/lldb/test/API/commands/watchpoints/watchpoint_on_vectors/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_on_vectors/main.c
rename to lldb/test/API/commands/watchpoints/watchpoint_on_vectors/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_set_command/Makefile b/lldb/test/API/commands/watchpoints/watchpoint_set_command/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_set_command/Makefile
rename to lldb/test/API/commands/watchpoints/watchpoint_set_command/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_set_command/TestWatchLocationWithWatchSet.py b/lldb/test/API/commands/watchpoints/watchpoint_set_command/TestWatchLocationWithWatchSet.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_set_command/TestWatchLocationWithWatchSet.py
rename to lldb/test/API/commands/watchpoints/watchpoint_set_command/TestWatchLocationWithWatchSet.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_set_command/main.cpp b/lldb/test/API/commands/watchpoints/watchpoint_set_command/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_set_command/main.cpp
rename to lldb/test/API/commands/watchpoints/watchpoint_set_command/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_size/Makefile b/lldb/test/API/commands/watchpoints/watchpoint_size/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_size/Makefile
rename to lldb/test/API/commands/watchpoints/watchpoint_size/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_size/TestWatchpointSizes.py b/lldb/test/API/commands/watchpoints/watchpoint_size/TestWatchpointSizes.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_size/TestWatchpointSizes.py
rename to lldb/test/API/commands/watchpoints/watchpoint_size/TestWatchpointSizes.py

diff  --git a/lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_size/main.c b/lldb/test/API/commands/watchpoints/watchpoint_size/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_size/main.c
rename to lldb/test/API/commands/watchpoints/watchpoint_size/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/driver/batch_mode/Makefile b/lldb/test/API/driver/batch_mode/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/driver/batch_mode/Makefile
rename to lldb/test/API/driver/batch_mode/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/driver/batch_mode/TestBatchMode.py b/lldb/test/API/driver/batch_mode/TestBatchMode.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/driver/batch_mode/TestBatchMode.py
rename to lldb/test/API/driver/batch_mode/TestBatchMode.py

diff  --git a/lldb/packages/Python/lldbsuite/test/driver/batch_mode/main.c b/lldb/test/API/driver/batch_mode/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/driver/batch_mode/main.c
rename to lldb/test/API/driver/batch_mode/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/abbreviation/.categories b/lldb/test/API/functionalities/abbreviation/.categories
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/abbreviation/.categories
rename to lldb/test/API/functionalities/abbreviation/.categories

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/abbreviation/TestAbbreviations.py b/lldb/test/API/functionalities/abbreviation/TestAbbreviations.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/abbreviation/TestAbbreviations.py
rename to lldb/test/API/functionalities/abbreviation/TestAbbreviations.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/abbreviation/TestCommonShortSpellings.py b/lldb/test/API/functionalities/abbreviation/TestCommonShortSpellings.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/abbreviation/TestCommonShortSpellings.py
rename to lldb/test/API/functionalities/abbreviation/TestCommonShortSpellings.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/alias/.categories b/lldb/test/API/functionalities/alias/.categories
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/alias/.categories
rename to lldb/test/API/functionalities/alias/.categories

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/archives/Makefile b/lldb/test/API/functionalities/archives/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/archives/Makefile
rename to lldb/test/API/functionalities/archives/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/archives/README b/lldb/test/API/functionalities/archives/README
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/archives/README
rename to lldb/test/API/functionalities/archives/README

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/archives/TestBSDArchives.py b/lldb/test/API/functionalities/archives/TestBSDArchives.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/archives/TestBSDArchives.py
rename to lldb/test/API/functionalities/archives/TestBSDArchives.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/archives/a.c b/lldb/test/API/functionalities/archives/a.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/archives/a.c
rename to lldb/test/API/functionalities/archives/a.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/archives/b.c b/lldb/test/API/functionalities/archives/b.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/archives/b.c
rename to lldb/test/API/functionalities/archives/b.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/archives/main.c b/lldb/test/API/functionalities/archives/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/archives/main.c
rename to lldb/test/API/functionalities/archives/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/asan/Makefile b/lldb/test/API/functionalities/asan/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/asan/Makefile
rename to lldb/test/API/functionalities/asan/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py b/lldb/test/API/functionalities/asan/TestMemoryHistory.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py
rename to lldb/test/API/functionalities/asan/TestMemoryHistory.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py b/lldb/test/API/functionalities/asan/TestReportData.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py
rename to lldb/test/API/functionalities/asan/TestReportData.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/asan/main.c b/lldb/test/API/functionalities/asan/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/asan/main.c
rename to lldb/test/API/functionalities/asan/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/avoids-fd-leak/Makefile b/lldb/test/API/functionalities/avoids-fd-leak/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/avoids-fd-leak/Makefile
rename to lldb/test/API/functionalities/avoids-fd-leak/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/avoids-fd-leak/TestFdLeak.py b/lldb/test/API/functionalities/avoids-fd-leak/TestFdLeak.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/avoids-fd-leak/TestFdLeak.py
rename to lldb/test/API/functionalities/avoids-fd-leak/TestFdLeak.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/avoids-fd-leak/main.c b/lldb/test/API/functionalities/avoids-fd-leak/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/avoids-fd-leak/main.c
rename to lldb/test/API/functionalities/avoids-fd-leak/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/backticks/.categories b/lldb/test/API/functionalities/backticks/.categories
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/backticks/.categories
rename to lldb/test/API/functionalities/backticks/.categories

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/backticks/TestBackticksWithoutATarget.py b/lldb/test/API/functionalities/backticks/TestBackticksWithoutATarget.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/backticks/TestBackticksWithoutATarget.py
rename to lldb/test/API/functionalities/backticks/TestBackticksWithoutATarget.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/Makefile b/lldb/test/API/functionalities/breakpoint/address_breakpoints/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/Makefile
rename to lldb/test/API/functionalities/breakpoint/address_breakpoints/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/TestAddressBreakpoints.py b/lldb/test/API/functionalities/breakpoint/address_breakpoints/TestAddressBreakpoints.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/TestAddressBreakpoints.py
rename to lldb/test/API/functionalities/breakpoint/address_breakpoints/TestAddressBreakpoints.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/TestBadAddressBreakpoints.py b/lldb/test/API/functionalities/breakpoint/address_breakpoints/TestBadAddressBreakpoints.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/TestBadAddressBreakpoints.py
rename to lldb/test/API/functionalities/breakpoint/address_breakpoints/TestBadAddressBreakpoints.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/main.c b/lldb/test/API/functionalities/breakpoint/address_breakpoints/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/main.c
rename to lldb/test/API/functionalities/breakpoint/address_breakpoints/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/Makefile b/lldb/test/API/functionalities/breakpoint/auto_continue/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/Makefile
rename to lldb/test/API/functionalities/breakpoint/auto_continue/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/TestBreakpointAutoContinue.py b/lldb/test/API/functionalities/breakpoint/auto_continue/TestBreakpointAutoContinue.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/TestBreakpointAutoContinue.py
rename to lldb/test/API/functionalities/breakpoint/auto_continue/TestBreakpointAutoContinue.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/main.c b/lldb/test/API/functionalities/breakpoint/auto_continue/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/main.c
rename to lldb/test/API/functionalities/breakpoint/auto_continue/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_by_line_and_column/Makefile b/lldb/test/API/functionalities/breakpoint/breakpoint_by_line_and_column/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_by_line_and_column/Makefile
rename to lldb/test/API/functionalities/breakpoint/breakpoint_by_line_and_column/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_by_line_and_column/TestBreakpointByLineAndColumn.py b/lldb/test/API/functionalities/breakpoint/breakpoint_by_line_and_column/TestBreakpointByLineAndColumn.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_by_line_and_column/TestBreakpointByLineAndColumn.py
rename to lldb/test/API/functionalities/breakpoint/breakpoint_by_line_and_column/TestBreakpointByLineAndColumn.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_by_line_and_column/main.c b/lldb/test/API/functionalities/breakpoint/breakpoint_by_line_and_column/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_by_line_and_column/main.c
rename to lldb/test/API/functionalities/breakpoint/breakpoint_by_line_and_column/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_callback_command_source/Makefile b/lldb/test/API/functionalities/breakpoint/breakpoint_callback_command_source/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_callback_command_source/Makefile
rename to lldb/test/API/functionalities/breakpoint/breakpoint_callback_command_source/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_callback_command_source/TestBreakpointCallbackCommandSource.py b/lldb/test/API/functionalities/breakpoint/breakpoint_callback_command_source/TestBreakpointCallbackCommandSource.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_callback_command_source/TestBreakpointCallbackCommandSource.py
rename to lldb/test/API/functionalities/breakpoint/breakpoint_callback_command_source/TestBreakpointCallbackCommandSource.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_callback_command_source/main.c b/lldb/test/API/functionalities/breakpoint/breakpoint_callback_command_source/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_callback_command_source/main.c
rename to lldb/test/API/functionalities/breakpoint/breakpoint_callback_command_source/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_callback_command_source/source.lldb b/lldb/test/API/functionalities/breakpoint/breakpoint_callback_command_source/source.lldb
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_callback_command_source/source.lldb
rename to lldb/test/API/functionalities/breakpoint/breakpoint_callback_command_source/source.lldb

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/Makefile b/lldb/test/API/functionalities/breakpoint/breakpoint_command/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/Makefile
rename to lldb/test/API/functionalities/breakpoint/breakpoint_command/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py b/lldb/test/API/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py
rename to lldb/test/API/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommandsFromPython.py b/lldb/test/API/functionalities/breakpoint/breakpoint_command/TestBreakpointCommandsFromPython.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommandsFromPython.py
rename to lldb/test/API/functionalities/breakpoint/breakpoint_command/TestBreakpointCommandsFromPython.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/TestRegexpBreakCommand.py b/lldb/test/API/functionalities/breakpoint/breakpoint_command/TestRegexpBreakCommand.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/TestRegexpBreakCommand.py
rename to lldb/test/API/functionalities/breakpoint/breakpoint_command/TestRegexpBreakCommand.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/a.c b/lldb/test/API/functionalities/breakpoint/breakpoint_command/a.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/a.c
rename to lldb/test/API/functionalities/breakpoint/breakpoint_command/a.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/b.c b/lldb/test/API/functionalities/breakpoint/breakpoint_command/b.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/b.c
rename to lldb/test/API/functionalities/breakpoint/breakpoint_command/b.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/bktptcmd.py b/lldb/test/API/functionalities/breakpoint/breakpoint_command/bktptcmd.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/bktptcmd.py
rename to lldb/test/API/functionalities/breakpoint/breakpoint_command/bktptcmd.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/main.c b/lldb/test/API/functionalities/breakpoint/breakpoint_command/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/main.c
rename to lldb/test/API/functionalities/breakpoint/breakpoint_command/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/side_effect.py b/lldb/test/API/functionalities/breakpoint/breakpoint_command/side_effect.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/side_effect.py
rename to lldb/test/API/functionalities/breakpoint/breakpoint_command/side_effect.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_conditions/Makefile b/lldb/test/API/functionalities/breakpoint/breakpoint_conditions/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_conditions/Makefile
rename to lldb/test/API/functionalities/breakpoint/breakpoint_conditions/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py b/lldb/test/API/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py
rename to lldb/test/API/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_conditions/main.c b/lldb/test/API/functionalities/breakpoint/breakpoint_conditions/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_conditions/main.c
rename to lldb/test/API/functionalities/breakpoint/breakpoint_conditions/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_hit_count/Makefile b/lldb/test/API/functionalities/breakpoint/breakpoint_hit_count/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_hit_count/Makefile
rename to lldb/test/API/functionalities/breakpoint/breakpoint_hit_count/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_hit_count/TestBreakpointHitCount.py b/lldb/test/API/functionalities/breakpoint/breakpoint_hit_count/TestBreakpointHitCount.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_hit_count/TestBreakpointHitCount.py
rename to lldb/test/API/functionalities/breakpoint/breakpoint_hit_count/TestBreakpointHitCount.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_hit_count/main.cpp b/lldb/test/API/functionalities/breakpoint/breakpoint_hit_count/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_hit_count/main.cpp
rename to lldb/test/API/functionalities/breakpoint/breakpoint_hit_count/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ids/Makefile b/lldb/test/API/functionalities/breakpoint/breakpoint_ids/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ids/Makefile
rename to lldb/test/API/functionalities/breakpoint/breakpoint_ids/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ids/TestBreakpointIDs.py b/lldb/test/API/functionalities/breakpoint/breakpoint_ids/TestBreakpointIDs.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ids/TestBreakpointIDs.py
rename to lldb/test/API/functionalities/breakpoint/breakpoint_ids/TestBreakpointIDs.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ids/main.cpp b/lldb/test/API/functionalities/breakpoint/breakpoint_ids/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ids/main.cpp
rename to lldb/test/API/functionalities/breakpoint/breakpoint_ids/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ignore_count/Makefile b/lldb/test/API/functionalities/breakpoint/breakpoint_ignore_count/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ignore_count/Makefile
rename to lldb/test/API/functionalities/breakpoint/breakpoint_ignore_count/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ignore_count/TestBreakpointIgnoreCount.py b/lldb/test/API/functionalities/breakpoint/breakpoint_ignore_count/TestBreakpointIgnoreCount.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ignore_count/TestBreakpointIgnoreCount.py
rename to lldb/test/API/functionalities/breakpoint/breakpoint_ignore_count/TestBreakpointIgnoreCount.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ignore_count/main.c b/lldb/test/API/functionalities/breakpoint/breakpoint_ignore_count/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ignore_count/main.c
rename to lldb/test/API/functionalities/breakpoint/breakpoint_ignore_count/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_in_delayslot/Makefile b/lldb/test/API/functionalities/breakpoint/breakpoint_in_delayslot/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_in_delayslot/Makefile
rename to lldb/test/API/functionalities/breakpoint/breakpoint_in_delayslot/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_in_delayslot/TestAvoidBreakpointInDelaySlot.py b/lldb/test/API/functionalities/breakpoint/breakpoint_in_delayslot/TestAvoidBreakpointInDelaySlot.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_in_delayslot/TestAvoidBreakpointInDelaySlot.py
rename to lldb/test/API/functionalities/breakpoint/breakpoint_in_delayslot/TestAvoidBreakpointInDelaySlot.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_in_delayslot/main.c b/lldb/test/API/functionalities/breakpoint/breakpoint_in_delayslot/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_in_delayslot/main.c
rename to lldb/test/API/functionalities/breakpoint/breakpoint_in_delayslot/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/Makefile b/lldb/test/API/functionalities/breakpoint/breakpoint_language/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/Makefile
rename to lldb/test/API/functionalities/breakpoint/breakpoint_language/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/TestBreakpointLanguage.py b/lldb/test/API/functionalities/breakpoint/breakpoint_language/TestBreakpointLanguage.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/TestBreakpointLanguage.py
rename to lldb/test/API/functionalities/breakpoint/breakpoint_language/TestBreakpointLanguage.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/a.c b/lldb/test/API/functionalities/breakpoint/breakpoint_language/a.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/a.c
rename to lldb/test/API/functionalities/breakpoint/breakpoint_language/a.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/b.cpp b/lldb/test/API/functionalities/breakpoint/breakpoint_language/b.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/b.cpp
rename to lldb/test/API/functionalities/breakpoint/breakpoint_language/b.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/main.cpp b/lldb/test/API/functionalities/breakpoint/breakpoint_language/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/main.cpp
rename to lldb/test/API/functionalities/breakpoint/breakpoint_language/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/Makefile b/lldb/test/API/functionalities/breakpoint/breakpoint_locations/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/Makefile
rename to lldb/test/API/functionalities/breakpoint/breakpoint_locations/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py b/lldb/test/API/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py
rename to lldb/test/API/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/main.c b/lldb/test/API/functionalities/breakpoint/breakpoint_locations/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/main.c
rename to lldb/test/API/functionalities/breakpoint/breakpoint_locations/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_names/Makefile b/lldb/test/API/functionalities/breakpoint/breakpoint_names/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_names/Makefile
rename to lldb/test/API/functionalities/breakpoint/breakpoint_names/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_names/TestBreakpointNames.py b/lldb/test/API/functionalities/breakpoint/breakpoint_names/TestBreakpointNames.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_names/TestBreakpointNames.py
rename to lldb/test/API/functionalities/breakpoint/breakpoint_names/TestBreakpointNames.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_names/main.c b/lldb/test/API/functionalities/breakpoint/breakpoint_names/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_names/main.c
rename to lldb/test/API/functionalities/breakpoint/breakpoint_names/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_options/Makefile b/lldb/test/API/functionalities/breakpoint/breakpoint_options/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_options/Makefile
rename to lldb/test/API/functionalities/breakpoint/breakpoint_options/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_options/TestBreakpointOptions.py b/lldb/test/API/functionalities/breakpoint/breakpoint_options/TestBreakpointOptions.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_options/TestBreakpointOptions.py
rename to lldb/test/API/functionalities/breakpoint/breakpoint_options/TestBreakpointOptions.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_options/foo.cpp b/lldb/test/API/functionalities/breakpoint/breakpoint_options/foo.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_options/foo.cpp
rename to lldb/test/API/functionalities/breakpoint/breakpoint_options/foo.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_options/main.cpp b/lldb/test/API/functionalities/breakpoint/breakpoint_options/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_options/main.cpp
rename to lldb/test/API/functionalities/breakpoint/breakpoint_options/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_set_restart/Makefile b/lldb/test/API/functionalities/breakpoint/breakpoint_set_restart/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_set_restart/Makefile
rename to lldb/test/API/functionalities/breakpoint/breakpoint_set_restart/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_set_restart/TestBreakpointSetRestart.py b/lldb/test/API/functionalities/breakpoint/breakpoint_set_restart/TestBreakpointSetRestart.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_set_restart/TestBreakpointSetRestart.py
rename to lldb/test/API/functionalities/breakpoint/breakpoint_set_restart/TestBreakpointSetRestart.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_set_restart/main.cpp b/lldb/test/API/functionalities/breakpoint/breakpoint_set_restart/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_set_restart/main.cpp
rename to lldb/test/API/functionalities/breakpoint/breakpoint_set_restart/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/comp_dir_symlink/Makefile b/lldb/test/API/functionalities/breakpoint/comp_dir_symlink/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/comp_dir_symlink/Makefile
rename to lldb/test/API/functionalities/breakpoint/comp_dir_symlink/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/comp_dir_symlink/TestCompDirSymLink.py b/lldb/test/API/functionalities/breakpoint/comp_dir_symlink/TestCompDirSymLink.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/comp_dir_symlink/TestCompDirSymLink.py
rename to lldb/test/API/functionalities/breakpoint/comp_dir_symlink/TestCompDirSymLink.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/comp_dir_symlink/main.cpp b/lldb/test/API/functionalities/breakpoint/comp_dir_symlink/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/comp_dir_symlink/main.cpp
rename to lldb/test/API/functionalities/breakpoint/comp_dir_symlink/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/Makefile b/lldb/test/API/functionalities/breakpoint/consecutive_breakpoints/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/Makefile
rename to lldb/test/API/functionalities/breakpoint/consecutive_breakpoints/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/TestConsecutiveBreakpoints.py b/lldb/test/API/functionalities/breakpoint/consecutive_breakpoints/TestConsecutiveBreakpoints.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/TestConsecutiveBreakpoints.py
rename to lldb/test/API/functionalities/breakpoint/consecutive_breakpoints/TestConsecutiveBreakpoints.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/main.cpp b/lldb/test/API/functionalities/breakpoint/consecutive_breakpoints/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/main.cpp
rename to lldb/test/API/functionalities/breakpoint/consecutive_breakpoints/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/Makefile b/lldb/test/API/functionalities/breakpoint/cpp/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/Makefile
rename to lldb/test/API/functionalities/breakpoint/cpp/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/TestCPPBreakpointLocations.py b/lldb/test/API/functionalities/breakpoint/cpp/TestCPPBreakpointLocations.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/TestCPPBreakpointLocations.py
rename to lldb/test/API/functionalities/breakpoint/cpp/TestCPPBreakpointLocations.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/main.cpp b/lldb/test/API/functionalities/breakpoint/cpp/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/main.cpp
rename to lldb/test/API/functionalities/breakpoint/cpp/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp_exception/Makefile b/lldb/test/API/functionalities/breakpoint/cpp_exception/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp_exception/Makefile
rename to lldb/test/API/functionalities/breakpoint/cpp_exception/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp_exception/TestCPPExceptionBreakpoint.py b/lldb/test/API/functionalities/breakpoint/cpp_exception/TestCPPExceptionBreakpoint.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp_exception/TestCPPExceptionBreakpoint.py
rename to lldb/test/API/functionalities/breakpoint/cpp_exception/TestCPPExceptionBreakpoint.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp_exception/main.cpp b/lldb/test/API/functionalities/breakpoint/cpp_exception/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp_exception/main.cpp
rename to lldb/test/API/functionalities/breakpoint/cpp_exception/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/Makefile b/lldb/test/API/functionalities/breakpoint/debugbreak/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/Makefile
rename to lldb/test/API/functionalities/breakpoint/debugbreak/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/TestDebugBreak.py b/lldb/test/API/functionalities/breakpoint/debugbreak/TestDebugBreak.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/TestDebugBreak.py
rename to lldb/test/API/functionalities/breakpoint/debugbreak/TestDebugBreak.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/main.c b/lldb/test/API/functionalities/breakpoint/debugbreak/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/main.c
rename to lldb/test/API/functionalities/breakpoint/debugbreak/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/dummy_target_breakpoints/Makefile b/lldb/test/API/functionalities/breakpoint/dummy_target_breakpoints/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/dummy_target_breakpoints/Makefile
rename to lldb/test/API/functionalities/breakpoint/dummy_target_breakpoints/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/dummy_target_breakpoints/TestBreakpointsWithNoTargets.py b/lldb/test/API/functionalities/breakpoint/dummy_target_breakpoints/TestBreakpointsWithNoTargets.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/dummy_target_breakpoints/TestBreakpointsWithNoTargets.py
rename to lldb/test/API/functionalities/breakpoint/dummy_target_breakpoints/TestBreakpointsWithNoTargets.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/dummy_target_breakpoints/main.c b/lldb/test/API/functionalities/breakpoint/dummy_target_breakpoints/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/dummy_target_breakpoints/main.c
rename to lldb/test/API/functionalities/breakpoint/dummy_target_breakpoints/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/Makefile b/lldb/test/API/functionalities/breakpoint/global_constructor/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/Makefile
rename to lldb/test/API/functionalities/breakpoint/global_constructor/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/TestBreakpointInGlobalConstructor.py b/lldb/test/API/functionalities/breakpoint/global_constructor/TestBreakpointInGlobalConstructor.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/TestBreakpointInGlobalConstructor.py
rename to lldb/test/API/functionalities/breakpoint/global_constructor/TestBreakpointInGlobalConstructor.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/foo.cpp b/lldb/test/API/functionalities/breakpoint/global_constructor/foo.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/foo.cpp
rename to lldb/test/API/functionalities/breakpoint/global_constructor/foo.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/foo.h b/lldb/test/API/functionalities/breakpoint/global_constructor/foo.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/foo.h
rename to lldb/test/API/functionalities/breakpoint/global_constructor/foo.h

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/main.cpp b/lldb/test/API/functionalities/breakpoint/global_constructor/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/main.cpp
rename to lldb/test/API/functionalities/breakpoint/global_constructor/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/Makefile b/lldb/test/API/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/Makefile
rename to lldb/test/API/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/TestHWBreakMultiThread.py b/lldb/test/API/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/TestHWBreakMultiThread.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/TestHWBreakMultiThread.py
rename to lldb/test/API/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/TestHWBreakMultiThread.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/main.cpp b/lldb/test/API/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/main.cpp
rename to lldb/test/API/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/inlined_breakpoints/Makefile b/lldb/test/API/functionalities/breakpoint/inlined_breakpoints/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/inlined_breakpoints/Makefile
rename to lldb/test/API/functionalities/breakpoint/inlined_breakpoints/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/inlined_breakpoints/TestInlinedBreakpoints.py b/lldb/test/API/functionalities/breakpoint/inlined_breakpoints/TestInlinedBreakpoints.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/inlined_breakpoints/TestInlinedBreakpoints.py
rename to lldb/test/API/functionalities/breakpoint/inlined_breakpoints/TestInlinedBreakpoints.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/inlined_breakpoints/basic_type.cpp b/lldb/test/API/functionalities/breakpoint/inlined_breakpoints/basic_type.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/inlined_breakpoints/basic_type.cpp
rename to lldb/test/API/functionalities/breakpoint/inlined_breakpoints/basic_type.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/inlined_breakpoints/int.cpp b/lldb/test/API/functionalities/breakpoint/inlined_breakpoints/int.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/inlined_breakpoints/int.cpp
rename to lldb/test/API/functionalities/breakpoint/inlined_breakpoints/int.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/Makefile b/lldb/test/API/functionalities/breakpoint/move_nearest/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/Makefile
rename to lldb/test/API/functionalities/breakpoint/move_nearest/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/TestMoveNearest.py b/lldb/test/API/functionalities/breakpoint/move_nearest/TestMoveNearest.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/TestMoveNearest.py
rename to lldb/test/API/functionalities/breakpoint/move_nearest/TestMoveNearest.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/foo.cpp b/lldb/test/API/functionalities/breakpoint/move_nearest/foo.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/foo.cpp
rename to lldb/test/API/functionalities/breakpoint/move_nearest/foo.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/foo.h b/lldb/test/API/functionalities/breakpoint/move_nearest/foo.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/foo.h
rename to lldb/test/API/functionalities/breakpoint/move_nearest/foo.h

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/main.cpp b/lldb/test/API/functionalities/breakpoint/move_nearest/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/main.cpp
rename to lldb/test/API/functionalities/breakpoint/move_nearest/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/objc/Makefile b/lldb/test/API/functionalities/breakpoint/objc/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/objc/Makefile
rename to lldb/test/API/functionalities/breakpoint/objc/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/objc/TestObjCBreakpoints.py b/lldb/test/API/functionalities/breakpoint/objc/TestObjCBreakpoints.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/objc/TestObjCBreakpoints.py
rename to lldb/test/API/functionalities/breakpoint/objc/TestObjCBreakpoints.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/objc/main.m b/lldb/test/API/functionalities/breakpoint/objc/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/objc/main.m
rename to lldb/test/API/functionalities/breakpoint/objc/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/Makefile b/lldb/test/API/functionalities/breakpoint/require_hw_breakpoints/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/Makefile
rename to lldb/test/API/functionalities/breakpoint/require_hw_breakpoints/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/TestRequireHWBreakpoints.py b/lldb/test/API/functionalities/breakpoint/require_hw_breakpoints/TestRequireHWBreakpoints.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/TestRequireHWBreakpoints.py
rename to lldb/test/API/functionalities/breakpoint/require_hw_breakpoints/TestRequireHWBreakpoints.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/main.c b/lldb/test/API/functionalities/breakpoint/require_hw_breakpoints/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/main.c
rename to lldb/test/API/functionalities/breakpoint/require_hw_breakpoints/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/Makefile b/lldb/test/API/functionalities/breakpoint/scripted_bkpt/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/Makefile
rename to lldb/test/API/functionalities/breakpoint/scripted_bkpt/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/TestScriptedResolver.py b/lldb/test/API/functionalities/breakpoint/scripted_bkpt/TestScriptedResolver.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/TestScriptedResolver.py
rename to lldb/test/API/functionalities/breakpoint/scripted_bkpt/TestScriptedResolver.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/main.c b/lldb/test/API/functionalities/breakpoint/scripted_bkpt/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/main.c
rename to lldb/test/API/functionalities/breakpoint/scripted_bkpt/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/resolver.py b/lldb/test/API/functionalities/breakpoint/scripted_bkpt/resolver.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/resolver.py
rename to lldb/test/API/functionalities/breakpoint/scripted_bkpt/resolver.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/Makefile b/lldb/test/API/functionalities/breakpoint/serialize/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/Makefile
rename to lldb/test/API/functionalities/breakpoint/serialize/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/TestBreakpointSerialization.py b/lldb/test/API/functionalities/breakpoint/serialize/TestBreakpointSerialization.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/TestBreakpointSerialization.py
rename to lldb/test/API/functionalities/breakpoint/serialize/TestBreakpointSerialization.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/main.c b/lldb/test/API/functionalities/breakpoint/serialize/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/main.c
rename to lldb/test/API/functionalities/breakpoint/serialize/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/resolver.py b/lldb/test/API/functionalities/breakpoint/serialize/resolver.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/resolver.py
rename to lldb/test/API/functionalities/breakpoint/serialize/resolver.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/side_effect.py b/lldb/test/API/functionalities/breakpoint/serialize/side_effect.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/side_effect.py
rename to lldb/test/API/functionalities/breakpoint/serialize/side_effect.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/Makefile b/lldb/test/API/functionalities/breakpoint/source_regexp/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/Makefile
rename to lldb/test/API/functionalities/breakpoint/source_regexp/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/TestSourceRegexBreakpoints.py b/lldb/test/API/functionalities/breakpoint/source_regexp/TestSourceRegexBreakpoints.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/TestSourceRegexBreakpoints.py
rename to lldb/test/API/functionalities/breakpoint/source_regexp/TestSourceRegexBreakpoints.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/a.c b/lldb/test/API/functionalities/breakpoint/source_regexp/a.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/a.c
rename to lldb/test/API/functionalities/breakpoint/source_regexp/a.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/a.h b/lldb/test/API/functionalities/breakpoint/source_regexp/a.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/a.h
rename to lldb/test/API/functionalities/breakpoint/source_regexp/a.h

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/main.c b/lldb/test/API/functionalities/breakpoint/source_regexp/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/main.c
rename to lldb/test/API/functionalities/breakpoint/source_regexp/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/step_over_breakpoint/Makefile b/lldb/test/API/functionalities/breakpoint/step_over_breakpoint/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/step_over_breakpoint/Makefile
rename to lldb/test/API/functionalities/breakpoint/step_over_breakpoint/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/step_over_breakpoint/TestStepOverBreakpoint.py b/lldb/test/API/functionalities/breakpoint/step_over_breakpoint/TestStepOverBreakpoint.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/step_over_breakpoint/TestStepOverBreakpoint.py
rename to lldb/test/API/functionalities/breakpoint/step_over_breakpoint/TestStepOverBreakpoint.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/step_over_breakpoint/main.cpp b/lldb/test/API/functionalities/breakpoint/step_over_breakpoint/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/step_over_breakpoint/main.cpp
rename to lldb/test/API/functionalities/breakpoint/step_over_breakpoint/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/completion/.categories b/lldb/test/API/functionalities/completion/.categories
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/completion/.categories
rename to lldb/test/API/functionalities/completion/.categories

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/completion/Makefile b/lldb/test/API/functionalities/completion/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/completion/Makefile
rename to lldb/test/API/functionalities/completion/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py b/lldb/test/API/functionalities/completion/TestCompletion.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py
rename to lldb/test/API/functionalities/completion/TestCompletion.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/completion/main.cpp b/lldb/test/API/functionalities/completion/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/completion/main.cpp
rename to lldb/test/API/functionalities/completion/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/conditional_break/.lldb b/lldb/test/API/functionalities/conditional_break/.lldb
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/conditional_break/.lldb
rename to lldb/test/API/functionalities/conditional_break/.lldb

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/conditional_break/Makefile b/lldb/test/API/functionalities/conditional_break/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/conditional_break/Makefile
rename to lldb/test/API/functionalities/conditional_break/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/conditional_break/TestConditionalBreak.py b/lldb/test/API/functionalities/conditional_break/TestConditionalBreak.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/conditional_break/TestConditionalBreak.py
rename to lldb/test/API/functionalities/conditional_break/TestConditionalBreak.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/conditional_break/conditional_break.py b/lldb/test/API/functionalities/conditional_break/conditional_break.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/conditional_break/conditional_break.py
rename to lldb/test/API/functionalities/conditional_break/conditional_break.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/conditional_break/main.c b/lldb/test/API/functionalities/conditional_break/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/conditional_break/main.c
rename to lldb/test/API/functionalities/conditional_break/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/.categories b/lldb/test/API/functionalities/darwin_log/.categories
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/.categories
rename to lldb/test/API/functionalities/darwin_log/.categories

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/basic/Makefile b/lldb/test/API/functionalities/darwin_log/basic/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/basic/Makefile
rename to lldb/test/API/functionalities/darwin_log/basic/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/basic/TestDarwinLogBasic.py b/lldb/test/API/functionalities/darwin_log/basic/TestDarwinLogBasic.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/basic/TestDarwinLogBasic.py
rename to lldb/test/API/functionalities/darwin_log/basic/TestDarwinLogBasic.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/basic/main.c b/lldb/test/API/functionalities/darwin_log/basic/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/basic/main.c
rename to lldb/test/API/functionalities/darwin_log/basic/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/common/darwin_log_common.h b/lldb/test/API/functionalities/darwin_log/common/darwin_log_common.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/common/darwin_log_common.h
rename to lldb/test/API/functionalities/darwin_log/common/darwin_log_common.h

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity-chain/Makefile b/lldb/test/API/functionalities/darwin_log/filter/exact_match/activity-chain/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity-chain/Makefile
rename to lldb/test/API/functionalities/darwin_log/filter/exact_match/activity-chain/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity-chain/TestDarwinLogFilterMatchActivityChain.py b/lldb/test/API/functionalities/darwin_log/filter/exact_match/activity-chain/TestDarwinLogFilterMatchActivityChain.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity-chain/TestDarwinLogFilterMatchActivityChain.py
rename to lldb/test/API/functionalities/darwin_log/filter/exact_match/activity-chain/TestDarwinLogFilterMatchActivityChain.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity-chain/main.c b/lldb/test/API/functionalities/darwin_log/filter/exact_match/activity-chain/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity-chain/main.c
rename to lldb/test/API/functionalities/darwin_log/filter/exact_match/activity-chain/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity/Makefile b/lldb/test/API/functionalities/darwin_log/filter/exact_match/activity/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity/Makefile
rename to lldb/test/API/functionalities/darwin_log/filter/exact_match/activity/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity/TestDarwinLogFilterMatchActivity.py b/lldb/test/API/functionalities/darwin_log/filter/exact_match/activity/TestDarwinLogFilterMatchActivity.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity/TestDarwinLogFilterMatchActivity.py
rename to lldb/test/API/functionalities/darwin_log/filter/exact_match/activity/TestDarwinLogFilterMatchActivity.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity/main.c b/lldb/test/API/functionalities/darwin_log/filter/exact_match/activity/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity/main.c
rename to lldb/test/API/functionalities/darwin_log/filter/exact_match/activity/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/category/Makefile b/lldb/test/API/functionalities/darwin_log/filter/exact_match/category/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/category/Makefile
rename to lldb/test/API/functionalities/darwin_log/filter/exact_match/category/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/category/TestDarwinLogFilterMatchCategory.py b/lldb/test/API/functionalities/darwin_log/filter/exact_match/category/TestDarwinLogFilterMatchCategory.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/category/TestDarwinLogFilterMatchCategory.py
rename to lldb/test/API/functionalities/darwin_log/filter/exact_match/category/TestDarwinLogFilterMatchCategory.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/category/main.c b/lldb/test/API/functionalities/darwin_log/filter/exact_match/category/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/category/main.c
rename to lldb/test/API/functionalities/darwin_log/filter/exact_match/category/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/Makefile b/lldb/test/API/functionalities/darwin_log/filter/exact_match/message/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/Makefile
rename to lldb/test/API/functionalities/darwin_log/filter/exact_match/message/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/TestDarwinLogFilterMatchMessage.py b/lldb/test/API/functionalities/darwin_log/filter/exact_match/message/TestDarwinLogFilterMatchMessage.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/TestDarwinLogFilterMatchMessage.py
rename to lldb/test/API/functionalities/darwin_log/filter/exact_match/message/TestDarwinLogFilterMatchMessage.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/main.c b/lldb/test/API/functionalities/darwin_log/filter/exact_match/message/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/main.c
rename to lldb/test/API/functionalities/darwin_log/filter/exact_match/message/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/subsystem/Makefile b/lldb/test/API/functionalities/darwin_log/filter/exact_match/subsystem/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/subsystem/Makefile
rename to lldb/test/API/functionalities/darwin_log/filter/exact_match/subsystem/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/subsystem/TestDarwinLogFilterMatchSubsystem.py b/lldb/test/API/functionalities/darwin_log/filter/exact_match/subsystem/TestDarwinLogFilterMatchSubsystem.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/subsystem/TestDarwinLogFilterMatchSubsystem.py
rename to lldb/test/API/functionalities/darwin_log/filter/exact_match/subsystem/TestDarwinLogFilterMatchSubsystem.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/subsystem/main.c b/lldb/test/API/functionalities/darwin_log/filter/exact_match/subsystem/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/subsystem/main.c
rename to lldb/test/API/functionalities/darwin_log/filter/exact_match/subsystem/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity-chain/Makefile b/lldb/test/API/functionalities/darwin_log/filter/regex/activity-chain/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity-chain/Makefile
rename to lldb/test/API/functionalities/darwin_log/filter/regex/activity-chain/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity-chain/TestDarwinLogFilterRegexActivityChain.py b/lldb/test/API/functionalities/darwin_log/filter/regex/activity-chain/TestDarwinLogFilterRegexActivityChain.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity-chain/TestDarwinLogFilterRegexActivityChain.py
rename to lldb/test/API/functionalities/darwin_log/filter/regex/activity-chain/TestDarwinLogFilterRegexActivityChain.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity-chain/main.c b/lldb/test/API/functionalities/darwin_log/filter/regex/activity-chain/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity-chain/main.c
rename to lldb/test/API/functionalities/darwin_log/filter/regex/activity-chain/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity/Makefile b/lldb/test/API/functionalities/darwin_log/filter/regex/activity/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity/Makefile
rename to lldb/test/API/functionalities/darwin_log/filter/regex/activity/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity/TestDarwinLogFilterRegexActivity.py b/lldb/test/API/functionalities/darwin_log/filter/regex/activity/TestDarwinLogFilterRegexActivity.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity/TestDarwinLogFilterRegexActivity.py
rename to lldb/test/API/functionalities/darwin_log/filter/regex/activity/TestDarwinLogFilterRegexActivity.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity/main.c b/lldb/test/API/functionalities/darwin_log/filter/regex/activity/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity/main.c
rename to lldb/test/API/functionalities/darwin_log/filter/regex/activity/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/category/Makefile b/lldb/test/API/functionalities/darwin_log/filter/regex/category/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/category/Makefile
rename to lldb/test/API/functionalities/darwin_log/filter/regex/category/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/category/TestDarwinLogFilterRegexCategory.py b/lldb/test/API/functionalities/darwin_log/filter/regex/category/TestDarwinLogFilterRegexCategory.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/category/TestDarwinLogFilterRegexCategory.py
rename to lldb/test/API/functionalities/darwin_log/filter/regex/category/TestDarwinLogFilterRegexCategory.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/category/main.c b/lldb/test/API/functionalities/darwin_log/filter/regex/category/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/category/main.c
rename to lldb/test/API/functionalities/darwin_log/filter/regex/category/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/message/Makefile b/lldb/test/API/functionalities/darwin_log/filter/regex/message/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/message/Makefile
rename to lldb/test/API/functionalities/darwin_log/filter/regex/message/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/message/TestDarwinLogFilterRegexMessage.py b/lldb/test/API/functionalities/darwin_log/filter/regex/message/TestDarwinLogFilterRegexMessage.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/message/TestDarwinLogFilterRegexMessage.py
rename to lldb/test/API/functionalities/darwin_log/filter/regex/message/TestDarwinLogFilterRegexMessage.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/message/main.c b/lldb/test/API/functionalities/darwin_log/filter/regex/message/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/message/main.c
rename to lldb/test/API/functionalities/darwin_log/filter/regex/message/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/subsystem/Makefile b/lldb/test/API/functionalities/darwin_log/filter/regex/subsystem/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/subsystem/Makefile
rename to lldb/test/API/functionalities/darwin_log/filter/regex/subsystem/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/subsystem/TestDarwinLogFilterRegexSubsystem.py b/lldb/test/API/functionalities/darwin_log/filter/regex/subsystem/TestDarwinLogFilterRegexSubsystem.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/subsystem/TestDarwinLogFilterRegexSubsystem.py
rename to lldb/test/API/functionalities/darwin_log/filter/regex/subsystem/TestDarwinLogFilterRegexSubsystem.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/subsystem/main.c b/lldb/test/API/functionalities/darwin_log/filter/regex/subsystem/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/subsystem/main.c
rename to lldb/test/API/functionalities/darwin_log/filter/regex/subsystem/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/format/Makefile b/lldb/test/API/functionalities/darwin_log/format/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/format/Makefile
rename to lldb/test/API/functionalities/darwin_log/format/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/format/TestDarwinLogMessageFormat.py b/lldb/test/API/functionalities/darwin_log/format/TestDarwinLogMessageFormat.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/format/TestDarwinLogMessageFormat.py
rename to lldb/test/API/functionalities/darwin_log/format/TestDarwinLogMessageFormat.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/format/main.c b/lldb/test/API/functionalities/darwin_log/format/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/format/main.c
rename to lldb/test/API/functionalities/darwin_log/format/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/debug/Makefile b/lldb/test/API/functionalities/darwin_log/source/debug/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/debug/Makefile
rename to lldb/test/API/functionalities/darwin_log/source/debug/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/debug/TestDarwinLogSourceDebug.py b/lldb/test/API/functionalities/darwin_log/source/debug/TestDarwinLogSourceDebug.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/debug/TestDarwinLogSourceDebug.py
rename to lldb/test/API/functionalities/darwin_log/source/debug/TestDarwinLogSourceDebug.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/debug/main.c b/lldb/test/API/functionalities/darwin_log/source/debug/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/debug/main.c
rename to lldb/test/API/functionalities/darwin_log/source/debug/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/info/Makefile b/lldb/test/API/functionalities/darwin_log/source/info/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/info/Makefile
rename to lldb/test/API/functionalities/darwin_log/source/info/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/info/TestDarwinLogSourceInfo.py b/lldb/test/API/functionalities/darwin_log/source/info/TestDarwinLogSourceInfo.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/info/TestDarwinLogSourceInfo.py
rename to lldb/test/API/functionalities/darwin_log/source/info/TestDarwinLogSourceInfo.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/info/main.c b/lldb/test/API/functionalities/darwin_log/source/info/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/info/main.c
rename to lldb/test/API/functionalities/darwin_log/source/info/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/.categories b/lldb/test/API/functionalities/data-formatter/.categories
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/.categories
rename to lldb/test/API/functionalities/data-formatter/.categories

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/array_typedef/Makefile b/lldb/test/API/functionalities/data-formatter/array_typedef/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/array_typedef/Makefile
rename to lldb/test/API/functionalities/data-formatter/array_typedef/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/array_typedef/TestArrayTypedef.py b/lldb/test/API/functionalities/data-formatter/array_typedef/TestArrayTypedef.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/array_typedef/TestArrayTypedef.py
rename to lldb/test/API/functionalities/data-formatter/array_typedef/TestArrayTypedef.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/array_typedef/main.cpp b/lldb/test/API/functionalities/data-formatter/array_typedef/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/array_typedef/main.cpp
rename to lldb/test/API/functionalities/data-formatter/array_typedef/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/boolreference/Makefile b/lldb/test/API/functionalities/data-formatter/boolreference/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/boolreference/Makefile
rename to lldb/test/API/functionalities/data-formatter/boolreference/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/boolreference/TestFormattersBoolRefPtr.py b/lldb/test/API/functionalities/data-formatter/boolreference/TestFormattersBoolRefPtr.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/boolreference/TestFormattersBoolRefPtr.py
rename to lldb/test/API/functionalities/data-formatter/boolreference/TestFormattersBoolRefPtr.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/boolreference/main.mm b/lldb/test/API/functionalities/data-formatter/boolreference/main.mm
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/boolreference/main.mm
rename to lldb/test/API/functionalities/data-formatter/boolreference/main.mm

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/compactvectors/Makefile b/lldb/test/API/functionalities/data-formatter/compactvectors/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/compactvectors/Makefile
rename to lldb/test/API/functionalities/data-formatter/compactvectors/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/compactvectors/TestCompactVectors.py b/lldb/test/API/functionalities/data-formatter/compactvectors/TestCompactVectors.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/compactvectors/TestCompactVectors.py
rename to lldb/test/API/functionalities/data-formatter/compactvectors/TestCompactVectors.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/compactvectors/main.cpp b/lldb/test/API/functionalities/data-formatter/compactvectors/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/compactvectors/main.cpp
rename to lldb/test/API/functionalities/data-formatter/compactvectors/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-advanced/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-advanced/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-advanced/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-advanced/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-advanced/TestDataFormatterAdv.py b/lldb/test/API/functionalities/data-formatter/data-formatter-advanced/TestDataFormatterAdv.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-advanced/TestDataFormatterAdv.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-advanced/TestDataFormatterAdv.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-advanced/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-advanced/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-advanced/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-advanced/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-caching/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-caching/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-caching/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-caching/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-caching/TestDataFormatterCaching.py b/lldb/test/API/functionalities/data-formatter/data-formatter-caching/TestDataFormatterCaching.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-caching/TestDataFormatterCaching.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-caching/TestDataFormatterCaching.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-caching/a.c b/lldb/test/API/functionalities/data-formatter/data-formatter-caching/a.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-caching/a.c
rename to lldb/test/API/functionalities/data-formatter/data-formatter-caching/a.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-caching/b.c b/lldb/test/API/functionalities/data-formatter/data-formatter-caching/b.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-caching/b.c
rename to lldb/test/API/functionalities/data-formatter/data-formatter-caching/b.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-categories/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-categories/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-categories/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-categories/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-categories/TestDataFormatterCategories.py b/lldb/test/API/functionalities/data-formatter/data-formatter-categories/TestDataFormatterCategories.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-categories/TestDataFormatterCategories.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-categories/TestDataFormatterCategories.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-categories/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-categories/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-categories/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-categories/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-cpp/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-cpp/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/TestDataFormatterCpp.py b/lldb/test/API/functionalities/data-formatter/data-formatter-cpp/TestDataFormatterCpp.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/TestDataFormatterCpp.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-cpp/TestDataFormatterCpp.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-cpp/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-cpp/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-disabling/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-disabling/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-disabling/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-disabling/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-disabling/TestDataFormatterDisabling.py b/lldb/test/API/functionalities/data-formatter/data-formatter-disabling/TestDataFormatterDisabling.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-disabling/TestDataFormatterDisabling.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-disabling/TestDataFormatterDisabling.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-disabling/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-disabling/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-disabling/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-disabling/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-enum-format/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-enum-format/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-enum-format/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-enum-format/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-enum-format/TestDataFormatterEnumFormat.py b/lldb/test/API/functionalities/data-formatter/data-formatter-enum-format/TestDataFormatterEnumFormat.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-enum-format/TestDataFormatterEnumFormat.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-enum-format/TestDataFormatterEnumFormat.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-enum-format/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-enum-format/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-enum-format/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-enum-format/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-globals/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-globals/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-globals/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-globals/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-globals/TestDataFormatterGlobals.py b/lldb/test/API/functionalities/data-formatter/data-formatter-globals/TestDataFormatterGlobals.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-globals/TestDataFormatterGlobals.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-globals/TestDataFormatterGlobals.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-globals/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-globals/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-globals/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-globals/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-named-summaries/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-named-summaries/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-named-summaries/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-named-summaries/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-named-summaries/TestDataFormatterNamedSummaries.py b/lldb/test/API/functionalities/data-formatter/data-formatter-named-summaries/TestDataFormatterNamedSummaries.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-named-summaries/TestDataFormatterNamedSummaries.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-named-summaries/TestDataFormatterNamedSummaries.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-named-summaries/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-named-summaries/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-named-summaries/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-named-summaries/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/.categories b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/.categories
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/.categories
rename to lldb/test/API/functionalities/data-formatter/data-formatter-objc/.categories

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-objc/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/ObjCDataFormatterTestCase.py b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/ObjCDataFormatterTestCase.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/ObjCDataFormatterTestCase.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-objc/ObjCDataFormatterTestCase.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCCF.py b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCCF.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCCF.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCCF.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCExpr.py b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCExpr.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCExpr.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCExpr.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCKVO.py b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCKVO.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCKVO.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCKVO.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSBundle.py b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSBundle.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSBundle.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSBundle.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSContainer.py b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSContainer.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSContainer.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSContainer.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSData.py b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSData.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSData.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSData.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSDate.py b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSDate.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSDate.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSDate.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSError.py b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSError.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSError.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSError.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSURL.py b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSURL.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSURL.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSURL.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCPlain.py b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCPlain.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCPlain.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCPlain.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjNSException.py b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjNSException.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjNSException.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjNSException.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/cmtime/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/cmtime/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/cmtime/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-objc/cmtime/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/cmtime/TestDataFormatterCMTime.py b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/cmtime/TestDataFormatterCMTime.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/cmtime/TestDataFormatterCMTime.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-objc/cmtime/TestDataFormatterCMTime.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/cmtime/main.m b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/cmtime/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/cmtime/main.m
rename to lldb/test/API/functionalities/data-formatter/data-formatter-objc/cmtime/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/main.m b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/main.m
rename to lldb/test/API/functionalities/data-formatter/data-formatter-objc/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsindexpath/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/nsindexpath/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsindexpath/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-objc/nsindexpath/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsindexpath/TestDataFormatterNSIndexPath.py b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/nsindexpath/TestDataFormatterNSIndexPath.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsindexpath/TestDataFormatterNSIndexPath.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-objc/nsindexpath/TestDataFormatterNSIndexPath.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsindexpath/main.m b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/nsindexpath/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsindexpath/main.m
rename to lldb/test/API/functionalities/data-formatter/data-formatter-objc/nsindexpath/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsstring/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/nsstring/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsstring/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-objc/nsstring/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsstring/TestDataFormatterNSString.py b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/nsstring/TestDataFormatterNSString.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsstring/TestDataFormatterNSString.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-objc/nsstring/TestDataFormatterNSString.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsstring/main.m b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/nsstring/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsstring/main.m
rename to lldb/test/API/functionalities/data-formatter/data-formatter-objc/nsstring/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-proper-plurals/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-proper-plurals/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-proper-plurals/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-proper-plurals/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-proper-plurals/TestFormattersOneIsSingular.py b/lldb/test/API/functionalities/data-formatter/data-formatter-proper-plurals/TestFormattersOneIsSingular.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-proper-plurals/TestFormattersOneIsSingular.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-proper-plurals/TestFormattersOneIsSingular.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-proper-plurals/main.m b/lldb/test/API/functionalities/data-formatter/data-formatter-proper-plurals/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-proper-plurals/main.m
rename to lldb/test/API/functionalities/data-formatter/data-formatter-proper-plurals/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-ptr-to-array/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-ptr-to-array/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-ptr-to-array/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-ptr-to-array/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-ptr-to-array/TestPtrToArrayFormatting.py b/lldb/test/API/functionalities/data-formatter/data-formatter-ptr-to-array/TestPtrToArrayFormatting.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-ptr-to-array/TestPtrToArrayFormatting.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-ptr-to-array/TestPtrToArrayFormatting.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-ptr-to-array/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-ptr-to-array/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-ptr-to-array/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-ptr-to-array/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-python-synth/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-python-synth/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/TestDataFormatterPythonSynth.py b/lldb/test/API/functionalities/data-formatter/data-formatter-python-synth/TestDataFormatterPythonSynth.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/TestDataFormatterPythonSynth.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-python-synth/TestDataFormatterPythonSynth.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/fooSynthProvider.py b/lldb/test/API/functionalities/data-formatter/data-formatter-python-synth/fooSynthProvider.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/fooSynthProvider.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-python-synth/fooSynthProvider.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/ftsp.py b/lldb/test/API/functionalities/data-formatter/data-formatter-python-synth/ftsp.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/ftsp.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-python-synth/ftsp.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-python-synth/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-python-synth/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-script/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-script/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-script/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-script/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-script/TestDataFormatterScript.py b/lldb/test/API/functionalities/data-formatter/data-formatter-script/TestDataFormatterScript.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-script/TestDataFormatterScript.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-script/TestDataFormatterScript.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-script/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-script/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-script/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-script/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-skip-summary/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-skip-summary/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-skip-summary/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-skip-summary/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-skip-summary/TestDataFormatterSkipSummary.py b/lldb/test/API/functionalities/data-formatter/data-formatter-skip-summary/TestDataFormatterSkipSummary.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-skip-summary/TestDataFormatterSkipSummary.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-skip-summary/TestDataFormatterSkipSummary.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-skip-summary/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-skip-summary/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-skip-summary/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-skip-summary/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-smart-array/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-smart-array/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-smart-array/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-smart-array/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-smart-array/TestDataFormatterSmartArray.py b/lldb/test/API/functionalities/data-formatter/data-formatter-smart-array/TestDataFormatterSmartArray.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-smart-array/TestDataFormatterSmartArray.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-smart-array/TestDataFormatterSmartArray.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-smart-array/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-smart-array/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-smart-array/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-smart-array/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/TestLibCxxAtomic.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/TestLibCxxAtomic.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/TestLibCxxAtomic.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/TestLibCxxAtomic.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/TestDataFormatterLibcxxBitset.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/TestDataFormatterLibcxxBitset.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/TestDataFormatterLibcxxBitset.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/TestDataFormatterLibcxxBitset.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/TestDataFormatterLibcxxForwardList.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/TestDataFormatterLibcxxForwardList.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/TestDataFormatterLibcxxForwardList.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/TestDataFormatterLibcxxForwardList.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/function/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/function/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/TestLibCxxFunction.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/function/TestLibCxxFunction.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/TestLibCxxFunction.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/function/TestLibCxxFunction.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/function/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/function/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/TestInitializerList.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/TestInitializerList.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/TestInitializerList.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/TestInitializerList.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/TestDataFormatterLibccIterator.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/TestDataFormatterLibccIterator.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/TestDataFormatterLibccIterator.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/TestDataFormatterLibccIterator.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/list/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/list/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/TestDataFormatterLibcxxList.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/list/TestDataFormatterLibcxxList.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/TestDataFormatterLibcxxList.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/list/TestDataFormatterLibcxxList.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/TestDataFormatterLibcxxListLoop.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/TestDataFormatterLibcxxListLoop.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/TestDataFormatterLibcxxListLoop.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/TestDataFormatterLibcxxListLoop.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/list/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/list/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/map/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/map/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/TestDataFormatterLibccMap.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/map/TestDataFormatterLibccMap.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/TestDataFormatterLibccMap.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/map/TestDataFormatterLibccMap.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/map/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/map/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/TestDataFormatterLibccMultiMap.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/TestDataFormatterLibccMultiMap.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/TestDataFormatterLibccMultiMap.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/TestDataFormatterLibccMultiMap.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/TestDataFormatterLibcxxMultiSet.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/TestDataFormatterLibcxxMultiSet.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/TestDataFormatterLibcxxMultiSet.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/TestDataFormatterLibcxxMultiSet.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/optional/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/optional/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/optional/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/optional/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/optional/TestDataFormatterLibcxxOptional.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/optional/TestDataFormatterLibcxxOptional.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/optional/TestDataFormatterLibcxxOptional.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/optional/TestDataFormatterLibcxxOptional.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/optional/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/optional/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/optional/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/optional/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/queue/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/queue/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/queue/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/queue/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/queue/TestDataFormatterLibcxxQueue.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/queue/TestDataFormatterLibcxxQueue.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/queue/TestDataFormatterLibcxxQueue.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/queue/TestDataFormatterLibcxxQueue.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/queue/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/queue/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/queue/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/queue/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/set/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/set/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/set/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/set/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/set/TestDataFormatterLibcxxSet.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/set/TestDataFormatterLibcxxSet.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/set/TestDataFormatterLibcxxSet.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/set/TestDataFormatterLibcxxSet.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/set/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/set/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/set/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/set/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/string/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/string/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/string/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/string/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/string/TestDataFormatterLibcxxString.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/string/TestDataFormatterLibcxxString.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/string/TestDataFormatterLibcxxString.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/string/TestDataFormatterLibcxxString.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/string/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/string/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/string/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/string/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/TestDataFormatterLibcxxTuple.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/TestDataFormatterLibcxxTuple.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/TestDataFormatterLibcxxTuple.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/TestDataFormatterLibcxxTuple.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/TestDataFormatterUnordered.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/TestDataFormatterUnordered.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/TestDataFormatterUnordered.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/TestDataFormatterUnordered.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/variant/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/variant/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/variant/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/variant/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/variant/TestDataFormatterLibcxxVariant.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/variant/TestDataFormatterLibcxxVariant.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/variant/TestDataFormatterLibcxxVariant.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/variant/TestDataFormatterLibcxxVariant.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/variant/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/variant/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/variant/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/variant/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/TestDataFormatterLibcxxVBool.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/TestDataFormatterLibcxxVBool.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/TestDataFormatterLibcxxVBool.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/TestDataFormatterLibcxxVBool.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/vector/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/vector/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/TestDataFormatterLibcxxVector.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/vector/TestDataFormatterLibcxxVector.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/TestDataFormatterLibcxxVector.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/vector/TestDataFormatterLibcxxVector.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/vector/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/vector/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/TestDataFormatterStdIterator.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/TestDataFormatterStdIterator.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/TestDataFormatterStdIterator.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/TestDataFormatterStdIterator.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/TestDataFormatterStdList.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/TestDataFormatterStdList.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/TestDataFormatterStdList.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/TestDataFormatterStdList.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/TestDataFormatterStdMap.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/TestDataFormatterStdMap.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/TestDataFormatterStdMap.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/TestDataFormatterStdMap.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/TestDataFormatterStdSmartPtr.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/TestDataFormatterStdSmartPtr.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/TestDataFormatterStdSmartPtr.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/TestDataFormatterStdSmartPtr.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/TestDataFormatterStdString.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/TestDataFormatterStdString.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/TestDataFormatterStdString.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/TestDataFormatterStdString.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/TestDataFormatterStdTuple.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/TestDataFormatterStdTuple.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/TestDataFormatterStdTuple.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/TestDataFormatterStdTuple.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/TestDataFormatterStdUniquePtr.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/TestDataFormatterStdUniquePtr.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/TestDataFormatterStdUniquePtr.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/TestDataFormatterStdUniquePtr.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/invalid/TestDataFormatterInvalidStdUniquePtr.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/invalid/TestDataFormatterInvalidStdUniquePtr.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/invalid/TestDataFormatterInvalidStdUniquePtr.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/invalid/TestDataFormatterInvalidStdUniquePtr.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/invalid/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/invalid/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/invalid/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/invalid/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/TestDataFormatterStdVBool.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/TestDataFormatterStdVBool.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/TestDataFormatterStdVBool.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/TestDataFormatterStdVBool.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/TestDataFormatterStdVector.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/TestDataFormatterStdVector.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/TestDataFormatterStdVector.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/TestDataFormatterStdVector.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synth/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-synth/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synth/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-synth/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synth/TestDataFormatterSynth.py b/lldb/test/API/functionalities/data-formatter/data-formatter-synth/TestDataFormatterSynth.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synth/TestDataFormatterSynth.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-synth/TestDataFormatterSynth.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synth/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-synth/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synth/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-synth/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-synthtype/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-synthtype/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/TestDataFormatterSynthType.py b/lldb/test/API/functionalities/data-formatter/data-formatter-synthtype/TestDataFormatterSynthType.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/TestDataFormatterSynthType.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-synthtype/TestDataFormatterSynthType.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-synthtype/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-synthtype/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/myIntSynthProvider.py b/lldb/test/API/functionalities/data-formatter/data-formatter-synthtype/myIntSynthProvider.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/myIntSynthProvider.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-synthtype/myIntSynthProvider.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthval/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-synthval/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthval/Makefile
rename to lldb/test/API/functionalities/data-formatter/data-formatter-synthval/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthval/TestDataFormatterSynthVal.py b/lldb/test/API/functionalities/data-formatter/data-formatter-synthval/TestDataFormatterSynthVal.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthval/TestDataFormatterSynthVal.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-synthval/TestDataFormatterSynthVal.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthval/main.cpp b/lldb/test/API/functionalities/data-formatter/data-formatter-synthval/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthval/main.cpp
rename to lldb/test/API/functionalities/data-formatter/data-formatter-synthval/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthval/myIntSynthProvider.py b/lldb/test/API/functionalities/data-formatter/data-formatter-synthval/myIntSynthProvider.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthval/myIntSynthProvider.py
rename to lldb/test/API/functionalities/data-formatter/data-formatter-synthval/myIntSynthProvider.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/dump_dynamic/TestDumpDynamic.py b/lldb/test/API/functionalities/data-formatter/dump_dynamic/TestDumpDynamic.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/dump_dynamic/TestDumpDynamic.py
rename to lldb/test/API/functionalities/data-formatter/dump_dynamic/TestDumpDynamic.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/dump_dynamic/main.cpp b/lldb/test/API/functionalities/data-formatter/dump_dynamic/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/dump_dynamic/main.cpp
rename to lldb/test/API/functionalities/data-formatter/dump_dynamic/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/format-propagation/Makefile b/lldb/test/API/functionalities/data-formatter/format-propagation/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/format-propagation/Makefile
rename to lldb/test/API/functionalities/data-formatter/format-propagation/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/format-propagation/TestFormatPropagation.py b/lldb/test/API/functionalities/data-formatter/format-propagation/TestFormatPropagation.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/format-propagation/TestFormatPropagation.py
rename to lldb/test/API/functionalities/data-formatter/format-propagation/TestFormatPropagation.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/format-propagation/main.cpp b/lldb/test/API/functionalities/data-formatter/format-propagation/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/format-propagation/main.cpp
rename to lldb/test/API/functionalities/data-formatter/format-propagation/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/frameformat_smallstruct/Makefile b/lldb/test/API/functionalities/data-formatter/frameformat_smallstruct/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/frameformat_smallstruct/Makefile
rename to lldb/test/API/functionalities/data-formatter/frameformat_smallstruct/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/frameformat_smallstruct/TestFrameFormatSmallStruct.py b/lldb/test/API/functionalities/data-formatter/frameformat_smallstruct/TestFrameFormatSmallStruct.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/frameformat_smallstruct/TestFrameFormatSmallStruct.py
rename to lldb/test/API/functionalities/data-formatter/frameformat_smallstruct/TestFrameFormatSmallStruct.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/frameformat_smallstruct/main.cpp b/lldb/test/API/functionalities/data-formatter/frameformat_smallstruct/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/frameformat_smallstruct/main.cpp
rename to lldb/test/API/functionalities/data-formatter/frameformat_smallstruct/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/hexcaps/Makefile b/lldb/test/API/functionalities/data-formatter/hexcaps/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/hexcaps/Makefile
rename to lldb/test/API/functionalities/data-formatter/hexcaps/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/hexcaps/TestDataFormatterHexCaps.py b/lldb/test/API/functionalities/data-formatter/hexcaps/TestDataFormatterHexCaps.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/hexcaps/TestDataFormatterHexCaps.py
rename to lldb/test/API/functionalities/data-formatter/hexcaps/TestDataFormatterHexCaps.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/hexcaps/main.cpp b/lldb/test/API/functionalities/data-formatter/hexcaps/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/hexcaps/main.cpp
rename to lldb/test/API/functionalities/data-formatter/hexcaps/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/language_category_updates/Makefile b/lldb/test/API/functionalities/data-formatter/language_category_updates/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/language_category_updates/Makefile
rename to lldb/test/API/functionalities/data-formatter/language_category_updates/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/language_category_updates/TestDataFormatterLanguageCategoryUpdates.py b/lldb/test/API/functionalities/data-formatter/language_category_updates/TestDataFormatterLanguageCategoryUpdates.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/language_category_updates/TestDataFormatterLanguageCategoryUpdates.py
rename to lldb/test/API/functionalities/data-formatter/language_category_updates/TestDataFormatterLanguageCategoryUpdates.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/language_category_updates/main.cpp b/lldb/test/API/functionalities/data-formatter/language_category_updates/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/language_category_updates/main.cpp
rename to lldb/test/API/functionalities/data-formatter/language_category_updates/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsarraysynth/Makefile b/lldb/test/API/functionalities/data-formatter/nsarraysynth/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsarraysynth/Makefile
rename to lldb/test/API/functionalities/data-formatter/nsarraysynth/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsarraysynth/TestNSArraySynthetic.py b/lldb/test/API/functionalities/data-formatter/nsarraysynth/TestNSArraySynthetic.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsarraysynth/TestNSArraySynthetic.py
rename to lldb/test/API/functionalities/data-formatter/nsarraysynth/TestNSArraySynthetic.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsarraysynth/main.m b/lldb/test/API/functionalities/data-formatter/nsarraysynth/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsarraysynth/main.m
rename to lldb/test/API/functionalities/data-formatter/nsarraysynth/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsdictionarysynth/Makefile b/lldb/test/API/functionalities/data-formatter/nsdictionarysynth/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsdictionarysynth/Makefile
rename to lldb/test/API/functionalities/data-formatter/nsdictionarysynth/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsdictionarysynth/TestNSDictionarySynthetic.py b/lldb/test/API/functionalities/data-formatter/nsdictionarysynth/TestNSDictionarySynthetic.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsdictionarysynth/TestNSDictionarySynthetic.py
rename to lldb/test/API/functionalities/data-formatter/nsdictionarysynth/TestNSDictionarySynthetic.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsdictionarysynth/main.m b/lldb/test/API/functionalities/data-formatter/nsdictionarysynth/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsdictionarysynth/main.m
rename to lldb/test/API/functionalities/data-formatter/nsdictionarysynth/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nssetsynth/Makefile b/lldb/test/API/functionalities/data-formatter/nssetsynth/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nssetsynth/Makefile
rename to lldb/test/API/functionalities/data-formatter/nssetsynth/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nssetsynth/TestNSSetSynthetic.py b/lldb/test/API/functionalities/data-formatter/nssetsynth/TestNSSetSynthetic.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nssetsynth/TestNSSetSynthetic.py
rename to lldb/test/API/functionalities/data-formatter/nssetsynth/TestNSSetSynthetic.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nssetsynth/main.m b/lldb/test/API/functionalities/data-formatter/nssetsynth/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nssetsynth/main.m
rename to lldb/test/API/functionalities/data-formatter/nssetsynth/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ostypeformatting/Makefile b/lldb/test/API/functionalities/data-formatter/ostypeformatting/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ostypeformatting/Makefile
rename to lldb/test/API/functionalities/data-formatter/ostypeformatting/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ostypeformatting/TestFormattersOsType.py b/lldb/test/API/functionalities/data-formatter/ostypeformatting/TestFormattersOsType.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ostypeformatting/TestFormattersOsType.py
rename to lldb/test/API/functionalities/data-formatter/ostypeformatting/TestFormattersOsType.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ostypeformatting/main.mm b/lldb/test/API/functionalities/data-formatter/ostypeformatting/main.mm
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ostypeformatting/main.mm
rename to lldb/test/API/functionalities/data-formatter/ostypeformatting/main.mm

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/parray/Makefile b/lldb/test/API/functionalities/data-formatter/parray/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/parray/Makefile
rename to lldb/test/API/functionalities/data-formatter/parray/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/parray/TestPrintArray.py b/lldb/test/API/functionalities/data-formatter/parray/TestPrintArray.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/parray/TestPrintArray.py
rename to lldb/test/API/functionalities/data-formatter/parray/TestPrintArray.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/parray/main.cpp b/lldb/test/API/functionalities/data-formatter/parray/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/parray/main.cpp
rename to lldb/test/API/functionalities/data-formatter/parray/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/poarray/Makefile b/lldb/test/API/functionalities/data-formatter/poarray/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/poarray/Makefile
rename to lldb/test/API/functionalities/data-formatter/poarray/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/poarray/TestPrintObjectArray.py b/lldb/test/API/functionalities/data-formatter/poarray/TestPrintObjectArray.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/poarray/TestPrintObjectArray.py
rename to lldb/test/API/functionalities/data-formatter/poarray/TestPrintObjectArray.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/poarray/main.mm b/lldb/test/API/functionalities/data-formatter/poarray/main.mm
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/poarray/main.mm
rename to lldb/test/API/functionalities/data-formatter/poarray/main.mm

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ptr_ref_typedef/Makefile b/lldb/test/API/functionalities/data-formatter/ptr_ref_typedef/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ptr_ref_typedef/Makefile
rename to lldb/test/API/functionalities/data-formatter/ptr_ref_typedef/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ptr_ref_typedef/TestPtrRef2Typedef.py b/lldb/test/API/functionalities/data-formatter/ptr_ref_typedef/TestPtrRef2Typedef.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ptr_ref_typedef/TestPtrRef2Typedef.py
rename to lldb/test/API/functionalities/data-formatter/ptr_ref_typedef/TestPtrRef2Typedef.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ptr_ref_typedef/main.cpp b/lldb/test/API/functionalities/data-formatter/ptr_ref_typedef/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ptr_ref_typedef/main.cpp
rename to lldb/test/API/functionalities/data-formatter/ptr_ref_typedef/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/Makefile b/lldb/test/API/functionalities/data-formatter/pyobjsynthprovider/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/Makefile
rename to lldb/test/API/functionalities/data-formatter/pyobjsynthprovider/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/TestPyObjSynthProvider.py b/lldb/test/API/functionalities/data-formatter/pyobjsynthprovider/TestPyObjSynthProvider.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/TestPyObjSynthProvider.py
rename to lldb/test/API/functionalities/data-formatter/pyobjsynthprovider/TestPyObjSynthProvider.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/main.cpp b/lldb/test/API/functionalities/data-formatter/pyobjsynthprovider/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/main.cpp
rename to lldb/test/API/functionalities/data-formatter/pyobjsynthprovider/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/provider.py b/lldb/test/API/functionalities/data-formatter/pyobjsynthprovider/provider.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/provider.py
rename to lldb/test/API/functionalities/data-formatter/pyobjsynthprovider/provider.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/refpointer-recursion/Makefile b/lldb/test/API/functionalities/data-formatter/refpointer-recursion/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/refpointer-recursion/Makefile
rename to lldb/test/API/functionalities/data-formatter/refpointer-recursion/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/refpointer-recursion/TestDataFormatterRefPtrRecursion.py b/lldb/test/API/functionalities/data-formatter/refpointer-recursion/TestDataFormatterRefPtrRecursion.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/refpointer-recursion/TestDataFormatterRefPtrRecursion.py
rename to lldb/test/API/functionalities/data-formatter/refpointer-recursion/TestDataFormatterRefPtrRecursion.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/refpointer-recursion/main.cpp b/lldb/test/API/functionalities/data-formatter/refpointer-recursion/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/refpointer-recursion/main.cpp
rename to lldb/test/API/functionalities/data-formatter/refpointer-recursion/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/setvaluefromcstring/TestSetValueFromCString.py b/lldb/test/API/functionalities/data-formatter/setvaluefromcstring/TestSetValueFromCString.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/setvaluefromcstring/TestSetValueFromCString.py
rename to lldb/test/API/functionalities/data-formatter/setvaluefromcstring/TestSetValueFromCString.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/setvaluefromcstring/main.m b/lldb/test/API/functionalities/data-formatter/setvaluefromcstring/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/setvaluefromcstring/main.m
rename to lldb/test/API/functionalities/data-formatter/setvaluefromcstring/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter/TestStringPrinter.py b/lldb/test/API/functionalities/data-formatter/stringprinter/TestStringPrinter.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter/TestStringPrinter.py
rename to lldb/test/API/functionalities/data-formatter/stringprinter/TestStringPrinter.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter/main.cpp b/lldb/test/API/functionalities/data-formatter/stringprinter/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter/main.cpp
rename to lldb/test/API/functionalities/data-formatter/stringprinter/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/summary-string-onfail/Makefile b/lldb/test/API/functionalities/data-formatter/summary-string-onfail/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/summary-string-onfail/Makefile
rename to lldb/test/API/functionalities/data-formatter/summary-string-onfail/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/summary-string-onfail/Test-rdar-9974002.py b/lldb/test/API/functionalities/data-formatter/summary-string-onfail/Test-rdar-9974002.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/summary-string-onfail/Test-rdar-9974002.py
rename to lldb/test/API/functionalities/data-formatter/summary-string-onfail/Test-rdar-9974002.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/summary-string-onfail/main.cpp b/lldb/test/API/functionalities/data-formatter/summary-string-onfail/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/summary-string-onfail/main.cpp
rename to lldb/test/API/functionalities/data-formatter/summary-string-onfail/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/Makefile b/lldb/test/API/functionalities/data-formatter/synthcapping/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/Makefile
rename to lldb/test/API/functionalities/data-formatter/synthcapping/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/TestSyntheticCapping.py b/lldb/test/API/functionalities/data-formatter/synthcapping/TestSyntheticCapping.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/TestSyntheticCapping.py
rename to lldb/test/API/functionalities/data-formatter/synthcapping/TestSyntheticCapping.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/fooSynthProvider.py b/lldb/test/API/functionalities/data-formatter/synthcapping/fooSynthProvider.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/fooSynthProvider.py
rename to lldb/test/API/functionalities/data-formatter/synthcapping/fooSynthProvider.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/main.cpp b/lldb/test/API/functionalities/data-formatter/synthcapping/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/main.cpp
rename to lldb/test/API/functionalities/data-formatter/synthcapping/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthupdate/Makefile b/lldb/test/API/functionalities/data-formatter/synthupdate/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthupdate/Makefile
rename to lldb/test/API/functionalities/data-formatter/synthupdate/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthupdate/TestSyntheticFilterRecompute.py b/lldb/test/API/functionalities/data-formatter/synthupdate/TestSyntheticFilterRecompute.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthupdate/TestSyntheticFilterRecompute.py
rename to lldb/test/API/functionalities/data-formatter/synthupdate/TestSyntheticFilterRecompute.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthupdate/main.m b/lldb/test/API/functionalities/data-formatter/synthupdate/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthupdate/main.m
rename to lldb/test/API/functionalities/data-formatter/synthupdate/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_arg/TestTypeSummaryListArg.py b/lldb/test/API/functionalities/data-formatter/type_summary_list_arg/TestTypeSummaryListArg.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_arg/TestTypeSummaryListArg.py
rename to lldb/test/API/functionalities/data-formatter/type_summary_list_arg/TestTypeSummaryListArg.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/Makefile b/lldb/test/API/functionalities/data-formatter/type_summary_list_script/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/Makefile
rename to lldb/test/API/functionalities/data-formatter/type_summary_list_script/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/TestTypeSummaryListScript.py b/lldb/test/API/functionalities/data-formatter/type_summary_list_script/TestTypeSummaryListScript.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/TestTypeSummaryListScript.py
rename to lldb/test/API/functionalities/data-formatter/type_summary_list_script/TestTypeSummaryListScript.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/main.cpp b/lldb/test/API/functionalities/data-formatter/type_summary_list_script/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/main.cpp
rename to lldb/test/API/functionalities/data-formatter/type_summary_list_script/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/tslsformatters.py b/lldb/test/API/functionalities/data-formatter/type_summary_list_script/tslsformatters.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/tslsformatters.py
rename to lldb/test/API/functionalities/data-formatter/type_summary_list_script/tslsformatters.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/typedef_array/TestTypedefArray.py b/lldb/test/API/functionalities/data-formatter/typedef_array/TestTypedefArray.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/typedef_array/TestTypedefArray.py
rename to lldb/test/API/functionalities/data-formatter/typedef_array/TestTypedefArray.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/typedef_array/main.cpp b/lldb/test/API/functionalities/data-formatter/typedef_array/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/typedef_array/main.cpp
rename to lldb/test/API/functionalities/data-formatter/typedef_array/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/user-format-vs-summary/Makefile b/lldb/test/API/functionalities/data-formatter/user-format-vs-summary/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/user-format-vs-summary/Makefile
rename to lldb/test/API/functionalities/data-formatter/user-format-vs-summary/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/user-format-vs-summary/TestUserFormatVsSummary.py b/lldb/test/API/functionalities/data-formatter/user-format-vs-summary/TestUserFormatVsSummary.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/user-format-vs-summary/TestUserFormatVsSummary.py
rename to lldb/test/API/functionalities/data-formatter/user-format-vs-summary/TestUserFormatVsSummary.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/user-format-vs-summary/main.cpp b/lldb/test/API/functionalities/data-formatter/user-format-vs-summary/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/user-format-vs-summary/main.cpp
rename to lldb/test/API/functionalities/data-formatter/user-format-vs-summary/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/var-in-aggregate-misuse/Makefile b/lldb/test/API/functionalities/data-formatter/var-in-aggregate-misuse/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/var-in-aggregate-misuse/Makefile
rename to lldb/test/API/functionalities/data-formatter/var-in-aggregate-misuse/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/var-in-aggregate-misuse/TestVarInAggregateMisuse.py b/lldb/test/API/functionalities/data-formatter/var-in-aggregate-misuse/TestVarInAggregateMisuse.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/var-in-aggregate-misuse/TestVarInAggregateMisuse.py
rename to lldb/test/API/functionalities/data-formatter/var-in-aggregate-misuse/TestVarInAggregateMisuse.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/var-in-aggregate-misuse/main.cpp b/lldb/test/API/functionalities/data-formatter/var-in-aggregate-misuse/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/var-in-aggregate-misuse/main.cpp
rename to lldb/test/API/functionalities/data-formatter/var-in-aggregate-misuse/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/Makefile b/lldb/test/API/functionalities/data-formatter/varscript_formatting/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/Makefile
rename to lldb/test/API/functionalities/data-formatter/varscript_formatting/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/TestDataFormatterVarScriptFormatting.py b/lldb/test/API/functionalities/data-formatter/varscript_formatting/TestDataFormatterVarScriptFormatting.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/TestDataFormatterVarScriptFormatting.py
rename to lldb/test/API/functionalities/data-formatter/varscript_formatting/TestDataFormatterVarScriptFormatting.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/helperfunc.py b/lldb/test/API/functionalities/data-formatter/varscript_formatting/helperfunc.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/helperfunc.py
rename to lldb/test/API/functionalities/data-formatter/varscript_formatting/helperfunc.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/main.cpp b/lldb/test/API/functionalities/data-formatter/varscript_formatting/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/main.cpp
rename to lldb/test/API/functionalities/data-formatter/varscript_formatting/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/vector-types/Makefile b/lldb/test/API/functionalities/data-formatter/vector-types/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/vector-types/Makefile
rename to lldb/test/API/functionalities/data-formatter/vector-types/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/vector-types/TestVectorTypesFormatting.py b/lldb/test/API/functionalities/data-formatter/vector-types/TestVectorTypesFormatting.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/vector-types/TestVectorTypesFormatting.py
rename to lldb/test/API/functionalities/data-formatter/vector-types/TestVectorTypesFormatting.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/vector-types/main.cpp b/lldb/test/API/functionalities/data-formatter/vector-types/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/vector-types/main.cpp
rename to lldb/test/API/functionalities/data-formatter/vector-types/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/Makefile b/lldb/test/API/functionalities/dead-strip/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/Makefile
rename to lldb/test/API/functionalities/dead-strip/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/TestDeadStrip.py b/lldb/test/API/functionalities/dead-strip/TestDeadStrip.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/TestDeadStrip.py
rename to lldb/test/API/functionalities/dead-strip/TestDeadStrip.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/cmds.txt b/lldb/test/API/functionalities/dead-strip/cmds.txt
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/cmds.txt
rename to lldb/test/API/functionalities/dead-strip/cmds.txt

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/main.c b/lldb/test/API/functionalities/dead-strip/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/main.c
rename to lldb/test/API/functionalities/dead-strip/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/deleted-executable/Makefile b/lldb/test/API/functionalities/deleted-executable/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/deleted-executable/Makefile
rename to lldb/test/API/functionalities/deleted-executable/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/deleted-executable/TestDeletedExecutable.py b/lldb/test/API/functionalities/deleted-executable/TestDeletedExecutable.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/deleted-executable/TestDeletedExecutable.py
rename to lldb/test/API/functionalities/deleted-executable/TestDeletedExecutable.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/deleted-executable/main.cpp b/lldb/test/API/functionalities/deleted-executable/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/deleted-executable/main.cpp
rename to lldb/test/API/functionalities/deleted-executable/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/dynamic_value_child_count/Makefile b/lldb/test/API/functionalities/dynamic_value_child_count/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/dynamic_value_child_count/Makefile
rename to lldb/test/API/functionalities/dynamic_value_child_count/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/dynamic_value_child_count/TestDynamicValueChildCount.py b/lldb/test/API/functionalities/dynamic_value_child_count/TestDynamicValueChildCount.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/dynamic_value_child_count/TestDynamicValueChildCount.py
rename to lldb/test/API/functionalities/dynamic_value_child_count/TestDynamicValueChildCount.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/dynamic_value_child_count/pass-to-base.cpp b/lldb/test/API/functionalities/dynamic_value_child_count/pass-to-base.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/dynamic_value_child_count/pass-to-base.cpp
rename to lldb/test/API/functionalities/dynamic_value_child_count/pass-to-base.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/exec/Makefile b/lldb/test/API/functionalities/exec/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/exec/Makefile
rename to lldb/test/API/functionalities/exec/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/exec/TestExec.py b/lldb/test/API/functionalities/exec/TestExec.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/exec/TestExec.py
rename to lldb/test/API/functionalities/exec/TestExec.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/exec/main.cpp b/lldb/test/API/functionalities/exec/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/exec/main.cpp
rename to lldb/test/API/functionalities/exec/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/exec/secondprog.cpp b/lldb/test/API/functionalities/exec/secondprog.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/exec/secondprog.cpp
rename to lldb/test/API/functionalities/exec/secondprog.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/Makefile b/lldb/test/API/functionalities/fat_archives/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/Makefile
rename to lldb/test/API/functionalities/fat_archives/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/TestFatArchives.py b/lldb/test/API/functionalities/fat_archives/TestFatArchives.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/TestFatArchives.py
rename to lldb/test/API/functionalities/fat_archives/TestFatArchives.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/a.c b/lldb/test/API/functionalities/fat_archives/a.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/a.c
rename to lldb/test/API/functionalities/fat_archives/a.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/a.h b/lldb/test/API/functionalities/fat_archives/a.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/a.h
rename to lldb/test/API/functionalities/fat_archives/a.h

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/main.c b/lldb/test/API/functionalities/fat_archives/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/main.c
rename to lldb/test/API/functionalities/fat_archives/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/float-display/Makefile b/lldb/test/API/functionalities/float-display/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/float-display/Makefile
rename to lldb/test/API/functionalities/float-display/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/float-display/TestFloatDisplay.py b/lldb/test/API/functionalities/float-display/TestFloatDisplay.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/float-display/TestFloatDisplay.py
rename to lldb/test/API/functionalities/float-display/TestFloatDisplay.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/float-display/main.c b/lldb/test/API/functionalities/float-display/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/float-display/main.c
rename to lldb/test/API/functionalities/float-display/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestArmRegisterDefinition.py b/lldb/test/API/functionalities/gdb_remote_client/TestArmRegisterDefinition.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestArmRegisterDefinition.py
rename to lldb/test/API/functionalities/gdb_remote_client/TestArmRegisterDefinition.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestGDBRemoteClient.py b/lldb/test/API/functionalities/gdb_remote_client/TestGDBRemoteClient.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestGDBRemoteClient.py
rename to lldb/test/API/functionalities/gdb_remote_client/TestGDBRemoteClient.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestGDBRemoteLoad.py b/lldb/test/API/functionalities/gdb_remote_client/TestGDBRemoteLoad.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestGDBRemoteLoad.py
rename to lldb/test/API/functionalities/gdb_remote_client/TestGDBRemoteLoad.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestJLink6Armv7RegisterDefinition.py b/lldb/test/API/functionalities/gdb_remote_client/TestJLink6Armv7RegisterDefinition.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestJLink6Armv7RegisterDefinition.py
rename to lldb/test/API/functionalities/gdb_remote_client/TestJLink6Armv7RegisterDefinition.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestNestedRegDefinitions.py b/lldb/test/API/functionalities/gdb_remote_client/TestNestedRegDefinitions.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestNestedRegDefinitions.py
rename to lldb/test/API/functionalities/gdb_remote_client/TestNestedRegDefinitions.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestNoGPacketSupported.py b/lldb/test/API/functionalities/gdb_remote_client/TestNoGPacketSupported.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestNoGPacketSupported.py
rename to lldb/test/API/functionalities/gdb_remote_client/TestNoGPacketSupported.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestNoWatchpointSupportInfo.py b/lldb/test/API/functionalities/gdb_remote_client/TestNoWatchpointSupportInfo.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestNoWatchpointSupportInfo.py
rename to lldb/test/API/functionalities/gdb_remote_client/TestNoWatchpointSupportInfo.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestPlatformClient.py b/lldb/test/API/functionalities/gdb_remote_client/TestPlatformClient.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestPlatformClient.py
rename to lldb/test/API/functionalities/gdb_remote_client/TestPlatformClient.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestRecognizeBreakpoint.py b/lldb/test/API/functionalities/gdb_remote_client/TestRecognizeBreakpoint.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestRecognizeBreakpoint.py
rename to lldb/test/API/functionalities/gdb_remote_client/TestRecognizeBreakpoint.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestRegDefinitionInParts.py b/lldb/test/API/functionalities/gdb_remote_client/TestRegDefinitionInParts.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestRegDefinitionInParts.py
rename to lldb/test/API/functionalities/gdb_remote_client/TestRegDefinitionInParts.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestRestartBug.py b/lldb/test/API/functionalities/gdb_remote_client/TestRestartBug.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestRestartBug.py
rename to lldb/test/API/functionalities/gdb_remote_client/TestRestartBug.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestStopPCs.py b/lldb/test/API/functionalities/gdb_remote_client/TestStopPCs.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestStopPCs.py
rename to lldb/test/API/functionalities/gdb_remote_client/TestStopPCs.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestTargetXMLArch.py b/lldb/test/API/functionalities/gdb_remote_client/TestTargetXMLArch.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestTargetXMLArch.py
rename to lldb/test/API/functionalities/gdb_remote_client/TestTargetXMLArch.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestThreadSelectionBug.py b/lldb/test/API/functionalities/gdb_remote_client/TestThreadSelectionBug.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestThreadSelectionBug.py
rename to lldb/test/API/functionalities/gdb_remote_client/TestThreadSelectionBug.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestWriteMemory.py b/lldb/test/API/functionalities/gdb_remote_client/TestWriteMemory.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestWriteMemory.py
rename to lldb/test/API/functionalities/gdb_remote_client/TestWriteMemory.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/a.yaml b/lldb/test/API/functionalities/gdb_remote_client/a.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/a.yaml
rename to lldb/test/API/functionalities/gdb_remote_client/a.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/basic_eh_frame.yaml b/lldb/test/API/functionalities/gdb_remote_client/basic_eh_frame.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/basic_eh_frame.yaml
rename to lldb/test/API/functionalities/gdb_remote_client/basic_eh_frame.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/gdbclientutils.py b/lldb/test/API/functionalities/gdb_remote_client/gdbclientutils.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/gdbclientutils.py
rename to lldb/test/API/functionalities/gdb_remote_client/gdbclientutils.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/operating_system.py b/lldb/test/API/functionalities/gdb_remote_client/operating_system.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/operating_system.py
rename to lldb/test/API/functionalities/gdb_remote_client/operating_system.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/operating_system_2.py b/lldb/test/API/functionalities/gdb_remote_client/operating_system_2.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/operating_system_2.py
rename to lldb/test/API/functionalities/gdb_remote_client/operating_system_2.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/history/TestHistoryRecall.py b/lldb/test/API/functionalities/history/TestHistoryRecall.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/history/TestHistoryRecall.py
rename to lldb/test/API/functionalities/history/TestHistoryRecall.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/inferior-assert/Makefile b/lldb/test/API/functionalities/inferior-assert/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/inferior-assert/Makefile
rename to lldb/test/API/functionalities/inferior-assert/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/inferior-assert/TestInferiorAssert.py b/lldb/test/API/functionalities/inferior-assert/TestInferiorAssert.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/inferior-assert/TestInferiorAssert.py
rename to lldb/test/API/functionalities/inferior-assert/TestInferiorAssert.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/inferior-assert/main.c b/lldb/test/API/functionalities/inferior-assert/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/inferior-assert/main.c
rename to lldb/test/API/functionalities/inferior-assert/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/inferior-changed/Makefile b/lldb/test/API/functionalities/inferior-changed/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/inferior-changed/Makefile
rename to lldb/test/API/functionalities/inferior-changed/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/inferior-changed/TestInferiorChanged.py b/lldb/test/API/functionalities/inferior-changed/TestInferiorChanged.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/inferior-changed/TestInferiorChanged.py
rename to lldb/test/API/functionalities/inferior-changed/TestInferiorChanged.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/inferior-changed/main.c b/lldb/test/API/functionalities/inferior-changed/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/inferior-changed/main.c
rename to lldb/test/API/functionalities/inferior-changed/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/inferior-changed/main2.c b/lldb/test/API/functionalities/inferior-changed/main2.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/inferior-changed/main2.c
rename to lldb/test/API/functionalities/inferior-changed/main2.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/Makefile b/lldb/test/API/functionalities/inferior-crashing/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/Makefile
rename to lldb/test/API/functionalities/inferior-crashing/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/TestInferiorCrashing.py b/lldb/test/API/functionalities/inferior-crashing/TestInferiorCrashing.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/TestInferiorCrashing.py
rename to lldb/test/API/functionalities/inferior-crashing/TestInferiorCrashing.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/TestInferiorCrashingStep.py b/lldb/test/API/functionalities/inferior-crashing/TestInferiorCrashingStep.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/TestInferiorCrashingStep.py
rename to lldb/test/API/functionalities/inferior-crashing/TestInferiorCrashingStep.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/main.c b/lldb/test/API/functionalities/inferior-crashing/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/main.c
rename to lldb/test/API/functionalities/inferior-crashing/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/recursive-inferior/Makefile b/lldb/test/API/functionalities/inferior-crashing/recursive-inferior/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/recursive-inferior/Makefile
rename to lldb/test/API/functionalities/inferior-crashing/recursive-inferior/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py b/lldb/test/API/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py
rename to lldb/test/API/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferiorStep.py b/lldb/test/API/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferiorStep.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferiorStep.py
rename to lldb/test/API/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferiorStep.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/recursive-inferior/main.c b/lldb/test/API/functionalities/inferior-crashing/recursive-inferior/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/recursive-inferior/main.c
rename to lldb/test/API/functionalities/inferior-crashing/recursive-inferior/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/inline-stepping/Makefile b/lldb/test/API/functionalities/inline-stepping/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/inline-stepping/Makefile
rename to lldb/test/API/functionalities/inline-stepping/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/inline-stepping/TestInlineStepping.py b/lldb/test/API/functionalities/inline-stepping/TestInlineStepping.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/inline-stepping/TestInlineStepping.py
rename to lldb/test/API/functionalities/inline-stepping/TestInlineStepping.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/inline-stepping/calling.cpp b/lldb/test/API/functionalities/inline-stepping/calling.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/inline-stepping/calling.cpp
rename to lldb/test/API/functionalities/inline-stepping/calling.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/Makefile b/lldb/test/API/functionalities/jitloader_gdb/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/Makefile
rename to lldb/test/API/functionalities/jitloader_gdb/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/TestJITLoaderGDB.py b/lldb/test/API/functionalities/jitloader_gdb/TestJITLoaderGDB.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/TestJITLoaderGDB.py
rename to lldb/test/API/functionalities/jitloader_gdb/TestJITLoaderGDB.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/main.c b/lldb/test/API/functionalities/jitloader_gdb/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/main.c
rename to lldb/test/API/functionalities/jitloader_gdb/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/simple.c b/lldb/test/API/functionalities/jitloader_gdb/simple.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/simple.c
rename to lldb/test/API/functionalities/jitloader_gdb/simple.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/lazy-loading/Makefile b/lldb/test/API/functionalities/lazy-loading/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/lazy-loading/Makefile
rename to lldb/test/API/functionalities/lazy-loading/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/lazy-loading/TestLazyLoading.py b/lldb/test/API/functionalities/lazy-loading/TestLazyLoading.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/lazy-loading/TestLazyLoading.py
rename to lldb/test/API/functionalities/lazy-loading/TestLazyLoading.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/lazy-loading/main.cpp b/lldb/test/API/functionalities/lazy-loading/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/lazy-loading/main.cpp
rename to lldb/test/API/functionalities/lazy-loading/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/.categories b/lldb/test/API/functionalities/load_unload/.categories
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/load_unload/.categories
rename to lldb/test/API/functionalities/load_unload/.categories

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/Makefile b/lldb/test/API/functionalities/load_unload/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/load_unload/Makefile
rename to lldb/test/API/functionalities/load_unload/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/TestLoadUnload.py b/lldb/test/API/functionalities/load_unload/TestLoadUnload.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/load_unload/TestLoadUnload.py
rename to lldb/test/API/functionalities/load_unload/TestLoadUnload.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/a.cpp b/lldb/test/API/functionalities/load_unload/a.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/load_unload/a.cpp
rename to lldb/test/API/functionalities/load_unload/a.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/b.cpp b/lldb/test/API/functionalities/load_unload/b.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/load_unload/b.cpp
rename to lldb/test/API/functionalities/load_unload/b.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/c.cpp b/lldb/test/API/functionalities/load_unload/c.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/load_unload/c.cpp
rename to lldb/test/API/functionalities/load_unload/c.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/cmds.txt b/lldb/test/API/functionalities/load_unload/cmds.txt
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/load_unload/cmds.txt
rename to lldb/test/API/functionalities/load_unload/cmds.txt

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/d.cpp b/lldb/test/API/functionalities/load_unload/d.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/load_unload/d.cpp
rename to lldb/test/API/functionalities/load_unload/d.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/hidden/Makefile b/lldb/test/API/functionalities/load_unload/hidden/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/load_unload/hidden/Makefile
rename to lldb/test/API/functionalities/load_unload/hidden/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/hidden/d.cpp b/lldb/test/API/functionalities/load_unload/hidden/d.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/load_unload/hidden/d.cpp
rename to lldb/test/API/functionalities/load_unload/hidden/d.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/main.cpp b/lldb/test/API/functionalities/load_unload/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/load_unload/main.cpp
rename to lldb/test/API/functionalities/load_unload/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/.categories b/lldb/test/API/functionalities/load_using_paths/.categories
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/.categories
rename to lldb/test/API/functionalities/load_using_paths/.categories

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/Makefile b/lldb/test/API/functionalities/load_using_paths/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/Makefile
rename to lldb/test/API/functionalities/load_using_paths/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/TestLoadUsingPaths.py b/lldb/test/API/functionalities/load_using_paths/TestLoadUsingPaths.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/TestLoadUsingPaths.py
rename to lldb/test/API/functionalities/load_using_paths/TestLoadUsingPaths.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/hidden/Makefile b/lldb/test/API/functionalities/load_using_paths/hidden/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/hidden/Makefile
rename to lldb/test/API/functionalities/load_using_paths/hidden/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/hidden/d.cpp b/lldb/test/API/functionalities/load_using_paths/hidden/d.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/hidden/d.cpp
rename to lldb/test/API/functionalities/load_using_paths/hidden/d.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/main.cpp b/lldb/test/API/functionalities/load_using_paths/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/main.cpp
rename to lldb/test/API/functionalities/load_using_paths/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/longjmp/Makefile b/lldb/test/API/functionalities/longjmp/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/longjmp/Makefile
rename to lldb/test/API/functionalities/longjmp/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/longjmp/TestLongjmp.py b/lldb/test/API/functionalities/longjmp/TestLongjmp.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/longjmp/TestLongjmp.py
rename to lldb/test/API/functionalities/longjmp/TestLongjmp.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/longjmp/main.c b/lldb/test/API/functionalities/longjmp/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/longjmp/main.c
rename to lldb/test/API/functionalities/longjmp/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/memory-region/Makefile b/lldb/test/API/functionalities/memory-region/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/memory-region/Makefile
rename to lldb/test/API/functionalities/memory-region/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/memory-region/TestMemoryRegion.py b/lldb/test/API/functionalities/memory-region/TestMemoryRegion.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/memory-region/TestMemoryRegion.py
rename to lldb/test/API/functionalities/memory-region/TestMemoryRegion.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/memory-region/main.cpp b/lldb/test/API/functionalities/memory-region/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/memory-region/main.cpp
rename to lldb/test/API/functionalities/memory-region/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/memory/cache/Makefile b/lldb/test/API/functionalities/memory/cache/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/memory/cache/Makefile
rename to lldb/test/API/functionalities/memory/cache/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/memory/cache/TestMemoryCache.py b/lldb/test/API/functionalities/memory/cache/TestMemoryCache.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/memory/cache/TestMemoryCache.py
rename to lldb/test/API/functionalities/memory/cache/TestMemoryCache.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/memory/cache/main.cpp b/lldb/test/API/functionalities/memory/cache/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/memory/cache/main.cpp
rename to lldb/test/API/functionalities/memory/cache/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/memory/find/Makefile b/lldb/test/API/functionalities/memory/find/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/memory/find/Makefile
rename to lldb/test/API/functionalities/memory/find/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/memory/find/TestMemoryFind.py b/lldb/test/API/functionalities/memory/find/TestMemoryFind.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/memory/find/TestMemoryFind.py
rename to lldb/test/API/functionalities/memory/find/TestMemoryFind.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/memory/find/main.cpp b/lldb/test/API/functionalities/memory/find/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/memory/find/main.cpp
rename to lldb/test/API/functionalities/memory/find/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/memory/read/Makefile b/lldb/test/API/functionalities/memory/read/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/memory/read/Makefile
rename to lldb/test/API/functionalities/memory/read/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/memory/read/TestMemoryRead.py b/lldb/test/API/functionalities/memory/read/TestMemoryRead.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/memory/read/TestMemoryRead.py
rename to lldb/test/API/functionalities/memory/read/TestMemoryRead.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/memory/read/main.cpp b/lldb/test/API/functionalities/memory/read/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/memory/read/main.cpp
rename to lldb/test/API/functionalities/memory/read/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/mtc/simple/Makefile b/lldb/test/API/functionalities/mtc/simple/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/mtc/simple/Makefile
rename to lldb/test/API/functionalities/mtc/simple/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/mtc/simple/TestMTCSimple.py b/lldb/test/API/functionalities/mtc/simple/TestMTCSimple.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/mtc/simple/TestMTCSimple.py
rename to lldb/test/API/functionalities/mtc/simple/TestMTCSimple.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/mtc/simple/main.m b/lldb/test/API/functionalities/mtc/simple/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/mtc/simple/main.m
rename to lldb/test/API/functionalities/mtc/simple/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/multidebugger_commands/TestMultipleDebuggersCommands.py b/lldb/test/API/functionalities/multidebugger_commands/TestMultipleDebuggersCommands.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/multidebugger_commands/TestMultipleDebuggersCommands.py
rename to lldb/test/API/functionalities/multidebugger_commands/TestMultipleDebuggersCommands.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/multiword-commands/TestMultiWordCommands.py b/lldb/test/API/functionalities/multiword-commands/TestMultiWordCommands.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/multiword-commands/TestMultiWordCommands.py
rename to lldb/test/API/functionalities/multiword-commands/TestMultiWordCommands.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/non-overlapping-index-variable-i/Makefile b/lldb/test/API/functionalities/non-overlapping-index-variable-i/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/non-overlapping-index-variable-i/Makefile
rename to lldb/test/API/functionalities/non-overlapping-index-variable-i/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/non-overlapping-index-variable-i/TestIndexVariable.py b/lldb/test/API/functionalities/non-overlapping-index-variable-i/TestIndexVariable.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/non-overlapping-index-variable-i/TestIndexVariable.py
rename to lldb/test/API/functionalities/non-overlapping-index-variable-i/TestIndexVariable.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/non-overlapping-index-variable-i/main.cpp b/lldb/test/API/functionalities/non-overlapping-index-variable-i/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/non-overlapping-index-variable-i/main.cpp
rename to lldb/test/API/functionalities/non-overlapping-index-variable-i/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/object-file/TestImageListMultiArchitecture.py b/lldb/test/API/functionalities/object-file/TestImageListMultiArchitecture.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/object-file/TestImageListMultiArchitecture.py
rename to lldb/test/API/functionalities/object-file/TestImageListMultiArchitecture.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-freebsd-10.0-x86_64-clang-3.3 b/lldb/test/API/functionalities/object-file/bin/hello-freebsd-10.0-x86_64-clang-3.3
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-freebsd-10.0-x86_64-clang-3.3
rename to lldb/test/API/functionalities/object-file/bin/hello-freebsd-10.0-x86_64-clang-3.3

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-freebsd-10.0-x86_64-gcc-4.7.3 b/lldb/test/API/functionalities/object-file/bin/hello-freebsd-10.0-x86_64-gcc-4.7.3
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-freebsd-10.0-x86_64-gcc-4.7.3
rename to lldb/test/API/functionalities/object-file/bin/hello-freebsd-10.0-x86_64-gcc-4.7.3

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-netbsd-6.1-x86_64-gcc-4.5.3 b/lldb/test/API/functionalities/object-file/bin/hello-netbsd-6.1-x86_64-gcc-4.5.3
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-netbsd-6.1-x86_64-gcc-4.5.3
rename to lldb/test/API/functionalities/object-file/bin/hello-netbsd-6.1-x86_64-gcc-4.5.3

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-ubuntu-14.04-x86_64-clang-3.5pre b/lldb/test/API/functionalities/object-file/bin/hello-ubuntu-14.04-x86_64-clang-3.5pre
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-ubuntu-14.04-x86_64-clang-3.5pre
rename to lldb/test/API/functionalities/object-file/bin/hello-ubuntu-14.04-x86_64-clang-3.5pre

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-ubuntu-14.04-x86_64-gcc-4.8.2 b/lldb/test/API/functionalities/object-file/bin/hello-ubuntu-14.04-x86_64-gcc-4.8.2
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-ubuntu-14.04-x86_64-gcc-4.8.2
rename to lldb/test/API/functionalities/object-file/bin/hello-ubuntu-14.04-x86_64-gcc-4.8.2

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-unknown-kalimba_arch4-kcc-36 b/lldb/test/API/functionalities/object-file/bin/hello-unknown-kalimba_arch4-kcc-36
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-unknown-kalimba_arch4-kcc-36
rename to lldb/test/API/functionalities/object-file/bin/hello-unknown-kalimba_arch4-kcc-36

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-unknown-kalimba_arch5-kcc-39 b/lldb/test/API/functionalities/object-file/bin/hello-unknown-kalimba_arch5-kcc-39
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-unknown-kalimba_arch5-kcc-39
rename to lldb/test/API/functionalities/object-file/bin/hello-unknown-kalimba_arch5-kcc-39

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello.c b/lldb/test/API/functionalities/object-file/bin/hello.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello.c
rename to lldb/test/API/functionalities/object-file/bin/hello.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello.cpp b/lldb/test/API/functionalities/object-file/bin/hello.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello.cpp
rename to lldb/test/API/functionalities/object-file/bin/hello.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/optimized_code/Makefile b/lldb/test/API/functionalities/optimized_code/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/optimized_code/Makefile
rename to lldb/test/API/functionalities/optimized_code/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/optimized_code/TestNoASanExceptionAfterEvalOP_piece.py b/lldb/test/API/functionalities/optimized_code/TestNoASanExceptionAfterEvalOP_piece.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/optimized_code/TestNoASanExceptionAfterEvalOP_piece.py
rename to lldb/test/API/functionalities/optimized_code/TestNoASanExceptionAfterEvalOP_piece.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/optimized_code/main.cpp b/lldb/test/API/functionalities/optimized_code/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/optimized_code/main.cpp
rename to lldb/test/API/functionalities/optimized_code/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/Makefile b/lldb/test/API/functionalities/param_entry_vals/basic_entry_values_x86_64/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/Makefile
rename to lldb/test/API/functionalities/param_entry_vals/basic_entry_values_x86_64/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/TestBasicEntryValuesX86_64.py b/lldb/test/API/functionalities/param_entry_vals/basic_entry_values_x86_64/TestBasicEntryValuesX86_64.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/TestBasicEntryValuesX86_64.py
rename to lldb/test/API/functionalities/param_entry_vals/basic_entry_values_x86_64/TestBasicEntryValuesX86_64.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/main.cpp b/lldb/test/API/functionalities/param_entry_vals/basic_entry_values_x86_64/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/param_entry_vals/basic_entry_values_x86_64/main.cpp
rename to lldb/test/API/functionalities/param_entry_vals/basic_entry_values_x86_64/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/paths/TestPaths.py b/lldb/test/API/functionalities/paths/TestPaths.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/paths/TestPaths.py
rename to lldb/test/API/functionalities/paths/TestPaths.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/plugins/command_plugin/Makefile b/lldb/test/API/functionalities/plugins/command_plugin/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/plugins/command_plugin/Makefile
rename to lldb/test/API/functionalities/plugins/command_plugin/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/plugins/command_plugin/TestPluginCommands.py b/lldb/test/API/functionalities/plugins/command_plugin/TestPluginCommands.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/plugins/command_plugin/TestPluginCommands.py
rename to lldb/test/API/functionalities/plugins/command_plugin/TestPluginCommands.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/plugins/command_plugin/plugin.cpp.template b/lldb/test/API/functionalities/plugins/command_plugin/plugin.cpp.template
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/plugins/command_plugin/plugin.cpp.template
rename to lldb/test/API/functionalities/plugins/command_plugin/plugin.cpp.template

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/Makefile b/lldb/test/API/functionalities/plugins/python_os_plugin/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/Makefile
rename to lldb/test/API/functionalities/plugins/python_os_plugin/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/TestPythonOSPlugin.py b/lldb/test/API/functionalities/plugins/python_os_plugin/TestPythonOSPlugin.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/TestPythonOSPlugin.py
rename to lldb/test/API/functionalities/plugins/python_os_plugin/TestPythonOSPlugin.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/main.c b/lldb/test/API/functionalities/plugins/python_os_plugin/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/main.c
rename to lldb/test/API/functionalities/plugins/python_os_plugin/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/operating_system.py b/lldb/test/API/functionalities/plugins/python_os_plugin/operating_system.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/operating_system.py
rename to lldb/test/API/functionalities/plugins/python_os_plugin/operating_system.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/operating_system2.py b/lldb/test/API/functionalities/plugins/python_os_plugin/operating_system2.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/operating_system2.py
rename to lldb/test/API/functionalities/plugins/python_os_plugin/operating_system2.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/TestLinuxCore.py b/lldb/test/API/functionalities/postmortem/elf-core/TestLinuxCore.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/TestLinuxCore.py
rename to lldb/test/API/functionalities/postmortem/elf-core/TestLinuxCore.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/altmain.c b/lldb/test/API/functionalities/postmortem/elf-core/altmain.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/altmain.c
rename to lldb/test/API/functionalities/postmortem/elf-core/altmain.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/altmain.core b/lldb/test/API/functionalities/postmortem/elf-core/altmain.core
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/altmain.core
rename to lldb/test/API/functionalities/postmortem/elf-core/altmain.core

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/altmain.out b/lldb/test/API/functionalities/postmortem/elf-core/altmain.out
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/altmain.out
rename to lldb/test/API/functionalities/postmortem/elf-core/altmain.out

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/fpr_sse.cpp b/lldb/test/API/functionalities/postmortem/elf-core/fpr_sse.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/fpr_sse.cpp
rename to lldb/test/API/functionalities/postmortem/elf-core/fpr_sse.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/TestGCore.py b/lldb/test/API/functionalities/postmortem/elf-core/gcore/TestGCore.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/TestGCore.py
rename to lldb/test/API/functionalities/postmortem/elf-core/gcore/TestGCore.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/linux-i386.core b/lldb/test/API/functionalities/postmortem/elf-core/gcore/linux-i386.core
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/linux-i386.core
rename to lldb/test/API/functionalities/postmortem/elf-core/gcore/linux-i386.core

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/linux-x86_64.core b/lldb/test/API/functionalities/postmortem/elf-core/gcore/linux-x86_64.core
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/linux-x86_64.core
rename to lldb/test/API/functionalities/postmortem/elf-core/gcore/linux-x86_64.core

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/main.cpp b/lldb/test/API/functionalities/postmortem/elf-core/gcore/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/main.cpp
rename to lldb/test/API/functionalities/postmortem/elf-core/gcore/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/main.mk b/lldb/test/API/functionalities/postmortem/elf-core/gcore/main.mk
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/main.mk
rename to lldb/test/API/functionalities/postmortem/elf-core/gcore/main.mk

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/make-core.sh b/lldb/test/API/functionalities/postmortem/elf-core/gcore/make-core.sh
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/make-core.sh
rename to lldb/test/API/functionalities/postmortem/elf-core/gcore/make-core.sh

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-arm.core b/lldb/test/API/functionalities/postmortem/elf-core/linux-arm.core
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-arm.core
rename to lldb/test/API/functionalities/postmortem/elf-core/linux-arm.core

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-fpr_sse_i386.core b/lldb/test/API/functionalities/postmortem/elf-core/linux-fpr_sse_i386.core
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-fpr_sse_i386.core
rename to lldb/test/API/functionalities/postmortem/elf-core/linux-fpr_sse_i386.core

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-fpr_sse_x86_64.core b/lldb/test/API/functionalities/postmortem/elf-core/linux-fpr_sse_x86_64.core
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-fpr_sse_x86_64.core
rename to lldb/test/API/functionalities/postmortem/elf-core/linux-fpr_sse_x86_64.core

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-i386.core b/lldb/test/API/functionalities/postmortem/elf-core/linux-i386.core
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-i386.core
rename to lldb/test/API/functionalities/postmortem/elf-core/linux-i386.core

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-i386.out b/lldb/test/API/functionalities/postmortem/elf-core/linux-i386.out
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-i386.out
rename to lldb/test/API/functionalities/postmortem/elf-core/linux-i386.out

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mips64el-gnuabi64.core b/lldb/test/API/functionalities/postmortem/elf-core/linux-mips64el-gnuabi64.core
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mips64el-gnuabi64.core
rename to lldb/test/API/functionalities/postmortem/elf-core/linux-mips64el-gnuabi64.core

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mips64el-gnuabi64.out b/lldb/test/API/functionalities/postmortem/elf-core/linux-mips64el-gnuabi64.out
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mips64el-gnuabi64.out
rename to lldb/test/API/functionalities/postmortem/elf-core/linux-mips64el-gnuabi64.out

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mips64el-gnuabin32.core b/lldb/test/API/functionalities/postmortem/elf-core/linux-mips64el-gnuabin32.core
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mips64el-gnuabin32.core
rename to lldb/test/API/functionalities/postmortem/elf-core/linux-mips64el-gnuabin32.core

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mips64el-gnuabin32.out b/lldb/test/API/functionalities/postmortem/elf-core/linux-mips64el-gnuabin32.out
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mips64el-gnuabin32.out
rename to lldb/test/API/functionalities/postmortem/elf-core/linux-mips64el-gnuabin32.out

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mipsel-gnuabio32.core b/lldb/test/API/functionalities/postmortem/elf-core/linux-mipsel-gnuabio32.core
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mipsel-gnuabio32.core
rename to lldb/test/API/functionalities/postmortem/elf-core/linux-mipsel-gnuabio32.core

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mipsel-gnuabio32.out b/lldb/test/API/functionalities/postmortem/elf-core/linux-mipsel-gnuabio32.out
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mipsel-gnuabio32.out
rename to lldb/test/API/functionalities/postmortem/elf-core/linux-mipsel-gnuabio32.out

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-ppc64le.core b/lldb/test/API/functionalities/postmortem/elf-core/linux-ppc64le.core
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-ppc64le.core
rename to lldb/test/API/functionalities/postmortem/elf-core/linux-ppc64le.core

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-ppc64le.out b/lldb/test/API/functionalities/postmortem/elf-core/linux-ppc64le.out
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-ppc64le.out
rename to lldb/test/API/functionalities/postmortem/elf-core/linux-ppc64le.out

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-s390x.core b/lldb/test/API/functionalities/postmortem/elf-core/linux-s390x.core
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-s390x.core
rename to lldb/test/API/functionalities/postmortem/elf-core/linux-s390x.core

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-s390x.out b/lldb/test/API/functionalities/postmortem/elf-core/linux-s390x.out
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-s390x.out
rename to lldb/test/API/functionalities/postmortem/elf-core/linux-s390x.out

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-x86_64.core b/lldb/test/API/functionalities/postmortem/elf-core/linux-x86_64.core
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-x86_64.core
rename to lldb/test/API/functionalities/postmortem/elf-core/linux-x86_64.core

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-x86_64.out b/lldb/test/API/functionalities/postmortem/elf-core/linux-x86_64.out
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-x86_64.out
rename to lldb/test/API/functionalities/postmortem/elf-core/linux-x86_64.out

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/main.c b/lldb/test/API/functionalities/postmortem/elf-core/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/main.c
rename to lldb/test/API/functionalities/postmortem/elf-core/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/make-core.sh b/lldb/test/API/functionalities/postmortem/elf-core/make-core.sh
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/make-core.sh
rename to lldb/test/API/functionalities/postmortem/elf-core/make-core.sh

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/TestLinuxCoreThreads.py b/lldb/test/API/functionalities/postmortem/elf-core/thread_crash/TestLinuxCoreThreads.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/TestLinuxCoreThreads.py
rename to lldb/test/API/functionalities/postmortem/elf-core/thread_crash/TestLinuxCoreThreads.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/linux-i386.core b/lldb/test/API/functionalities/postmortem/elf-core/thread_crash/linux-i386.core
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/linux-i386.core
rename to lldb/test/API/functionalities/postmortem/elf-core/thread_crash/linux-i386.core

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/linux-x86_64.core b/lldb/test/API/functionalities/postmortem/elf-core/thread_crash/linux-x86_64.core
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/linux-x86_64.core
rename to lldb/test/API/functionalities/postmortem/elf-core/thread_crash/linux-x86_64.core

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/main.cpp b/lldb/test/API/functionalities/postmortem/elf-core/thread_crash/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/main.cpp
rename to lldb/test/API/functionalities/postmortem/elf-core/thread_crash/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/main.mk b/lldb/test/API/functionalities/postmortem/elf-core/thread_crash/main.mk
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/main.mk
rename to lldb/test/API/functionalities/postmortem/elf-core/thread_crash/main.mk

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/make-core.sh b/lldb/test/API/functionalities/postmortem/elf-core/thread_crash/make-core.sh
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/make-core.sh
rename to lldb/test/API/functionalities/postmortem/elf-core/thread_crash/make-core.sh

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/TestMachCore.py b/lldb/test/API/functionalities/postmortem/mach-core/TestMachCore.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/TestMachCore.py
rename to lldb/test/API/functionalities/postmortem/mach-core/TestMachCore.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/operating_system.py b/lldb/test/API/functionalities/postmortem/mach-core/operating_system.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/operating_system.py
rename to lldb/test/API/functionalities/postmortem/mach-core/operating_system.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/test.core.yaml b/lldb/test/API/functionalities/postmortem/mach-core/test.core.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/test.core.yaml
rename to lldb/test/API/functionalities/postmortem/mach-core/test.core.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/TestMiniDumpNew.py b/lldb/test/API/functionalities/postmortem/minidump-new/TestMiniDumpNew.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/TestMiniDumpNew.py
rename to lldb/test/API/functionalities/postmortem/minidump-new/TestMiniDumpNew.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/TestMiniDumpUUID.py b/lldb/test/API/functionalities/postmortem/minidump-new/TestMiniDumpUUID.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/TestMiniDumpUUID.py
rename to lldb/test/API/functionalities/postmortem/minidump-new/TestMiniDumpUUID.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/arm-linux.yaml b/lldb/test/API/functionalities/postmortem/minidump-new/arm-linux.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/arm-linux.yaml
rename to lldb/test/API/functionalities/postmortem/minidump-new/arm-linux.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/arm-macos.yaml b/lldb/test/API/functionalities/postmortem/minidump-new/arm-macos.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/arm-macos.yaml
rename to lldb/test/API/functionalities/postmortem/minidump-new/arm-macos.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/arm64-macos.yaml b/lldb/test/API/functionalities/postmortem/minidump-new/arm64-macos.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/arm64-macos.yaml
rename to lldb/test/API/functionalities/postmortem/minidump-new/arm64-macos.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/install_breakpad.cpp b/lldb/test/API/functionalities/postmortem/minidump-new/install_breakpad.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/install_breakpad.cpp
rename to lldb/test/API/functionalities/postmortem/minidump-new/install_breakpad.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/libuuidmatch.yaml b/lldb/test/API/functionalities/postmortem/minidump-new/libuuidmatch.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/libuuidmatch.yaml
rename to lldb/test/API/functionalities/postmortem/minidump-new/libuuidmatch.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/libuuidmismatch.yaml b/lldb/test/API/functionalities/postmortem/minidump-new/libuuidmismatch.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/libuuidmismatch.yaml
rename to lldb/test/API/functionalities/postmortem/minidump-new/libuuidmismatch.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-partial-uuids-match.yaml b/lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-partial-uuids-match.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-partial-uuids-match.yaml
rename to lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-partial-uuids-match.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-partial-uuids-mismatch.yaml b/lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-partial-uuids-mismatch.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-partial-uuids-mismatch.yaml
rename to lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-partial-uuids-mismatch.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-same-uuids.yaml b/lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-same-uuids.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-same-uuids.yaml
rename to lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-same-uuids.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-uuids-elf-build-id-16.yaml b/lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-uuids-elf-build-id-16.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-uuids-elf-build-id-16.yaml
rename to lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-uuids-elf-build-id-16.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-uuids-elf-build-id-20.yaml b/lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-uuids-elf-build-id-20.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-uuids-elf-build-id-20.yaml
rename to lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-uuids-elf-build-id-20.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-uuids-elf-build-id-zero.yaml b/lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-uuids-elf-build-id-zero.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-uuids-elf-build-id-zero.yaml
rename to lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-uuids-elf-build-id-zero.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-uuids-no-age.yaml b/lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-uuids-no-age.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-uuids-no-age.yaml
rename to lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-uuids-no-age.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-uuids-with-age.yaml b/lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-uuids-with-age.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-uuids-with-age.yaml
rename to lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-uuids-with-age.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-zero-uuids.yaml b/lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-zero-uuids.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-arm-zero-uuids.yaml
rename to lldb/test/API/functionalities/postmortem/minidump-new/linux-arm-zero-uuids.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64 b/lldb/test/API/functionalities/postmortem/minidump-new/linux-x86_64
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64
rename to lldb/test/API/functionalities/postmortem/minidump-new/linux-x86_64

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64.cpp b/lldb/test/API/functionalities/postmortem/minidump-new/linux-x86_64.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64.cpp
rename to lldb/test/API/functionalities/postmortem/minidump-new/linux-x86_64.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64.dmp b/lldb/test/API/functionalities/postmortem/minidump-new/linux-x86_64.dmp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64.dmp
rename to lldb/test/API/functionalities/postmortem/minidump-new/linux-x86_64.dmp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64.yaml b/lldb/test/API/functionalities/postmortem/minidump-new/linux-x86_64.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64.yaml
rename to lldb/test/API/functionalities/postmortem/minidump-new/linux-x86_64.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64_not_crashed b/lldb/test/API/functionalities/postmortem/minidump-new/linux-x86_64_not_crashed
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64_not_crashed
rename to lldb/test/API/functionalities/postmortem/minidump-new/linux-x86_64_not_crashed

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64_not_crashed.cpp b/lldb/test/API/functionalities/postmortem/minidump-new/linux-x86_64_not_crashed.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64_not_crashed.cpp
rename to lldb/test/API/functionalities/postmortem/minidump-new/linux-x86_64_not_crashed.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64_not_crashed.dmp b/lldb/test/API/functionalities/postmortem/minidump-new/linux-x86_64_not_crashed.dmp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64_not_crashed.dmp
rename to lldb/test/API/functionalities/postmortem/minidump-new/linux-x86_64_not_crashed.dmp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64_null_signal.yaml b/lldb/test/API/functionalities/postmortem/minidump-new/linux-x86_64_null_signal.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64_null_signal.yaml
rename to lldb/test/API/functionalities/postmortem/minidump-new/linux-x86_64_null_signal.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/macos-arm-uuids-no-age.yaml b/lldb/test/API/functionalities/postmortem/minidump-new/macos-arm-uuids-no-age.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/macos-arm-uuids-no-age.yaml
rename to lldb/test/API/functionalities/postmortem/minidump-new/macos-arm-uuids-no-age.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/makefile.txt b/lldb/test/API/functionalities/postmortem/minidump-new/makefile.txt
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/makefile.txt
rename to lldb/test/API/functionalities/postmortem/minidump-new/makefile.txt

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/regions-linux-map.yaml b/lldb/test/API/functionalities/postmortem/minidump-new/regions-linux-map.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/regions-linux-map.yaml
rename to lldb/test/API/functionalities/postmortem/minidump-new/regions-linux-map.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/relative_module_name.yaml b/lldb/test/API/functionalities/postmortem/minidump-new/relative_module_name.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/relative_module_name.yaml
rename to lldb/test/API/functionalities/postmortem/minidump-new/relative_module_name.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/Makefile b/lldb/test/API/functionalities/postmortem/minidump/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/Makefile
rename to lldb/test/API/functionalities/postmortem/minidump/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/TestMiniDump.py b/lldb/test/API/functionalities/postmortem/minidump/TestMiniDump.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/TestMiniDump.py
rename to lldb/test/API/functionalities/postmortem/minidump/TestMiniDump.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/fizzbuzz.cpp b/lldb/test/API/functionalities/postmortem/minidump/fizzbuzz.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/fizzbuzz.cpp
rename to lldb/test/API/functionalities/postmortem/minidump/fizzbuzz.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/fizzbuzz.syms b/lldb/test/API/functionalities/postmortem/minidump/fizzbuzz.syms
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/fizzbuzz.syms
rename to lldb/test/API/functionalities/postmortem/minidump/fizzbuzz.syms

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/fizzbuzz_no_heap.dmp b/lldb/test/API/functionalities/postmortem/minidump/fizzbuzz_no_heap.dmp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/fizzbuzz_no_heap.dmp
rename to lldb/test/API/functionalities/postmortem/minidump/fizzbuzz_no_heap.dmp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/main.cpp b/lldb/test/API/functionalities/postmortem/minidump/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/main.cpp
rename to lldb/test/API/functionalities/postmortem/minidump/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.aarch64 b/lldb/test/API/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.aarch64
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.aarch64
rename to lldb/test/API/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.aarch64

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.aarch64.core b/lldb/test/API/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.aarch64.core
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.aarch64.core
rename to lldb/test/API/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.aarch64.core

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.amd64 b/lldb/test/API/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.amd64
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.amd64
rename to lldb/test/API/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.amd64

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.amd64.core b/lldb/test/API/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.amd64.core
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.amd64.core
rename to lldb/test/API/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.amd64.core

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.c b/lldb/test/API/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.c
rename to lldb/test/API/functionalities/postmortem/netbsd-core/1lwp_SIGSEGV.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.aarch64 b/lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.aarch64
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.aarch64
rename to lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.aarch64

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.aarch64.core b/lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.aarch64.core
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.aarch64.core
rename to lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.aarch64.core

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.amd64 b/lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.amd64
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.amd64
rename to lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.amd64

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.amd64.core b/lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.amd64.core
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.amd64.core
rename to lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.amd64.core

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.c b/lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.c
rename to lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_process_SIGSEGV.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.aarch64 b/lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.aarch64
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.aarch64
rename to lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.aarch64

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.aarch64.core b/lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.aarch64.core
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.aarch64.core
rename to lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.aarch64.core

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.amd64 b/lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.amd64
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.amd64
rename to lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.amd64

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.amd64.core b/lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.amd64.core
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.amd64.core
rename to lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.amd64.core

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.c b/lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.c
rename to lldb/test/API/functionalities/postmortem/netbsd-core/2lwp_t2_SIGSEGV.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/GNUmakefile b/lldb/test/API/functionalities/postmortem/netbsd-core/GNUmakefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/GNUmakefile
rename to lldb/test/API/functionalities/postmortem/netbsd-core/GNUmakefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/TestNetBSDCore.py b/lldb/test/API/functionalities/postmortem/netbsd-core/TestNetBSDCore.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/TestNetBSDCore.py
rename to lldb/test/API/functionalities/postmortem/netbsd-core/TestNetBSDCore.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/wow64_minidump/TestWow64MiniDump.py b/lldb/test/API/functionalities/postmortem/wow64_minidump/TestWow64MiniDump.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/wow64_minidump/TestWow64MiniDump.py
rename to lldb/test/API/functionalities/postmortem/wow64_minidump/TestWow64MiniDump.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/wow64_minidump/fizzbuzz.cpp b/lldb/test/API/functionalities/postmortem/wow64_minidump/fizzbuzz.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/wow64_minidump/fizzbuzz.cpp
rename to lldb/test/API/functionalities/postmortem/wow64_minidump/fizzbuzz.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/wow64_minidump/fizzbuzz_wow64.dmp b/lldb/test/API/functionalities/postmortem/wow64_minidump/fizzbuzz_wow64.dmp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/postmortem/wow64_minidump/fizzbuzz_wow64.dmp
rename to lldb/test/API/functionalities/postmortem/wow64_minidump/fizzbuzz_wow64.dmp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/Makefile b/lldb/test/API/functionalities/pre_run_dylibs/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/Makefile
rename to lldb/test/API/functionalities/pre_run_dylibs/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/TestPreRunDylibs.py b/lldb/test/API/functionalities/pre_run_dylibs/TestPreRunDylibs.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/TestPreRunDylibs.py
rename to lldb/test/API/functionalities/pre_run_dylibs/TestPreRunDylibs.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/foo.cpp b/lldb/test/API/functionalities/pre_run_dylibs/foo.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/foo.cpp
rename to lldb/test/API/functionalities/pre_run_dylibs/foo.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/foo.h b/lldb/test/API/functionalities/pre_run_dylibs/foo.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/foo.h
rename to lldb/test/API/functionalities/pre_run_dylibs/foo.h

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/main.cpp b/lldb/test/API/functionalities/pre_run_dylibs/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/main.cpp
rename to lldb/test/API/functionalities/pre_run_dylibs/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/process_group/Makefile b/lldb/test/API/functionalities/process_group/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/process_group/Makefile
rename to lldb/test/API/functionalities/process_group/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/process_group/TestChangeProcessGroup.py b/lldb/test/API/functionalities/process_group/TestChangeProcessGroup.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/process_group/TestChangeProcessGroup.py
rename to lldb/test/API/functionalities/process_group/TestChangeProcessGroup.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/process_group/main.c b/lldb/test/API/functionalities/process_group/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/process_group/main.c
rename to lldb/test/API/functionalities/process_group/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/process_save_core/Makefile b/lldb/test/API/functionalities/process_save_core/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/process_save_core/Makefile
rename to lldb/test/API/functionalities/process_save_core/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/process_save_core/TestProcessSaveCore.py b/lldb/test/API/functionalities/process_save_core/TestProcessSaveCore.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/process_save_core/TestProcessSaveCore.py
rename to lldb/test/API/functionalities/process_save_core/TestProcessSaveCore.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/process_save_core/main.cpp b/lldb/test/API/functionalities/process_save_core/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/process_save_core/main.cpp
rename to lldb/test/API/functionalities/process_save_core/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/ptr_refs/Makefile b/lldb/test/API/functionalities/ptr_refs/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/ptr_refs/Makefile
rename to lldb/test/API/functionalities/ptr_refs/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/ptr_refs/TestPtrRefs.py b/lldb/test/API/functionalities/ptr_refs/TestPtrRefs.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/ptr_refs/TestPtrRefs.py
rename to lldb/test/API/functionalities/ptr_refs/TestPtrRefs.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/ptr_refs/main.c b/lldb/test/API/functionalities/ptr_refs/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/ptr_refs/main.c
rename to lldb/test/API/functionalities/ptr_refs/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/recursion/Makefile b/lldb/test/API/functionalities/recursion/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/recursion/Makefile
rename to lldb/test/API/functionalities/recursion/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/recursion/TestValueObjectRecursion.py b/lldb/test/API/functionalities/recursion/TestValueObjectRecursion.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/recursion/TestValueObjectRecursion.py
rename to lldb/test/API/functionalities/recursion/TestValueObjectRecursion.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/recursion/main.cpp b/lldb/test/API/functionalities/recursion/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/recursion/main.cpp
rename to lldb/test/API/functionalities/recursion/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/rerun/Makefile b/lldb/test/API/functionalities/rerun/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/rerun/Makefile
rename to lldb/test/API/functionalities/rerun/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/rerun/TestRerun.py b/lldb/test/API/functionalities/rerun/TestRerun.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/rerun/TestRerun.py
rename to lldb/test/API/functionalities/rerun/TestRerun.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/rerun/main.cpp b/lldb/test/API/functionalities/rerun/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/rerun/main.cpp
rename to lldb/test/API/functionalities/rerun/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/return-value/Makefile b/lldb/test/API/functionalities/return-value/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/return-value/Makefile
rename to lldb/test/API/functionalities/return-value/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/return-value/TestReturnValue.py b/lldb/test/API/functionalities/return-value/TestReturnValue.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/return-value/TestReturnValue.py
rename to lldb/test/API/functionalities/return-value/TestReturnValue.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/return-value/call-func.cpp b/lldb/test/API/functionalities/return-value/call-func.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/return-value/call-func.cpp
rename to lldb/test/API/functionalities/return-value/call-func.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/set-data/Makefile b/lldb/test/API/functionalities/set-data/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/set-data/Makefile
rename to lldb/test/API/functionalities/set-data/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/set-data/TestSetData.py b/lldb/test/API/functionalities/set-data/TestSetData.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/set-data/TestSetData.py
rename to lldb/test/API/functionalities/set-data/TestSetData.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/set-data/main.m b/lldb/test/API/functionalities/set-data/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/set-data/main.m
rename to lldb/test/API/functionalities/set-data/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/show_location/TestShowLocationDwarf5.py b/lldb/test/API/functionalities/show_location/TestShowLocationDwarf5.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/show_location/TestShowLocationDwarf5.py
rename to lldb/test/API/functionalities/show_location/TestShowLocationDwarf5.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/show_location/a.yaml b/lldb/test/API/functionalities/show_location/a.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/show_location/a.yaml
rename to lldb/test/API/functionalities/show_location/a.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/signal/Makefile b/lldb/test/API/functionalities/signal/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/signal/Makefile
rename to lldb/test/API/functionalities/signal/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/signal/TestSendSignal.py b/lldb/test/API/functionalities/signal/TestSendSignal.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/signal/TestSendSignal.py
rename to lldb/test/API/functionalities/signal/TestSendSignal.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-abrt/Makefile b/lldb/test/API/functionalities/signal/handle-abrt/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-abrt/Makefile
rename to lldb/test/API/functionalities/signal/handle-abrt/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-abrt/TestHandleAbort.py b/lldb/test/API/functionalities/signal/handle-abrt/TestHandleAbort.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-abrt/TestHandleAbort.py
rename to lldb/test/API/functionalities/signal/handle-abrt/TestHandleAbort.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-abrt/main.c b/lldb/test/API/functionalities/signal/handle-abrt/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-abrt/main.c
rename to lldb/test/API/functionalities/signal/handle-abrt/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-segv/Makefile b/lldb/test/API/functionalities/signal/handle-segv/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-segv/Makefile
rename to lldb/test/API/functionalities/signal/handle-segv/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-segv/TestHandleSegv.py b/lldb/test/API/functionalities/signal/handle-segv/TestHandleSegv.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-segv/TestHandleSegv.py
rename to lldb/test/API/functionalities/signal/handle-segv/TestHandleSegv.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-segv/main.c b/lldb/test/API/functionalities/signal/handle-segv/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-segv/main.c
rename to lldb/test/API/functionalities/signal/handle-segv/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/signal/main.c b/lldb/test/API/functionalities/signal/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/signal/main.c
rename to lldb/test/API/functionalities/signal/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/signal/raise/Makefile b/lldb/test/API/functionalities/signal/raise/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/signal/raise/Makefile
rename to lldb/test/API/functionalities/signal/raise/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/signal/raise/TestRaise.py b/lldb/test/API/functionalities/signal/raise/TestRaise.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/signal/raise/TestRaise.py
rename to lldb/test/API/functionalities/signal/raise/TestRaise.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/signal/raise/main.c b/lldb/test/API/functionalities/signal/raise/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/signal/raise/main.c
rename to lldb/test/API/functionalities/signal/raise/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/source-map/TestTargetSourceMap.py b/lldb/test/API/functionalities/source-map/TestTargetSourceMap.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/source-map/TestTargetSourceMap.py
rename to lldb/test/API/functionalities/source-map/TestTargetSourceMap.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/source-map/Trivial/main.c b/lldb/test/API/functionalities/source-map/Trivial/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/source-map/Trivial/main.c
rename to lldb/test/API/functionalities/source-map/Trivial/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/source-map/a.yaml b/lldb/test/API/functionalities/source-map/a.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/source-map/a.yaml
rename to lldb/test/API/functionalities/source-map/a.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/stats_api/Makefile b/lldb/test/API/functionalities/stats_api/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/stats_api/Makefile
rename to lldb/test/API/functionalities/stats_api/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/stats_api/TestStatisticsAPI.py b/lldb/test/API/functionalities/stats_api/TestStatisticsAPI.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/stats_api/TestStatisticsAPI.py
rename to lldb/test/API/functionalities/stats_api/TestStatisticsAPI.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/stats_api/main.c b/lldb/test/API/functionalities/stats_api/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/stats_api/main.c
rename to lldb/test/API/functionalities/stats_api/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/Makefile b/lldb/test/API/functionalities/step-avoids-no-debug/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/Makefile
rename to lldb/test/API/functionalities/step-avoids-no-debug/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/TestStepNoDebug.py b/lldb/test/API/functionalities/step-avoids-no-debug/TestStepNoDebug.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/TestStepNoDebug.py
rename to lldb/test/API/functionalities/step-avoids-no-debug/TestStepNoDebug.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/with-debug.c b/lldb/test/API/functionalities/step-avoids-no-debug/with-debug.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/with-debug.c
rename to lldb/test/API/functionalities/step-avoids-no-debug/with-debug.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/without-debug.c b/lldb/test/API/functionalities/step-avoids-no-debug/without-debug.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/without-debug.c
rename to lldb/test/API/functionalities/step-avoids-no-debug/without-debug.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/step_scripted/Makefile b/lldb/test/API/functionalities/step_scripted/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/step_scripted/Makefile
rename to lldb/test/API/functionalities/step_scripted/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/step_scripted/Steps.py b/lldb/test/API/functionalities/step_scripted/Steps.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/step_scripted/Steps.py
rename to lldb/test/API/functionalities/step_scripted/Steps.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/step_scripted/TestStepScripted.py b/lldb/test/API/functionalities/step_scripted/TestStepScripted.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/step_scripted/TestStepScripted.py
rename to lldb/test/API/functionalities/step_scripted/TestStepScripted.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/step_scripted/main.c b/lldb/test/API/functionalities/step_scripted/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/step_scripted/main.c
rename to lldb/test/API/functionalities/step_scripted/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq1/Makefile b/lldb/test/API/functionalities/tail_call_frames/ambiguous_tail_call_seq1/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq1/Makefile
rename to lldb/test/API/functionalities/tail_call_frames/ambiguous_tail_call_seq1/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq1/TestAmbiguousTailCallSeq1.py b/lldb/test/API/functionalities/tail_call_frames/ambiguous_tail_call_seq1/TestAmbiguousTailCallSeq1.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq1/TestAmbiguousTailCallSeq1.py
rename to lldb/test/API/functionalities/tail_call_frames/ambiguous_tail_call_seq1/TestAmbiguousTailCallSeq1.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq1/main.cpp b/lldb/test/API/functionalities/tail_call_frames/ambiguous_tail_call_seq1/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq1/main.cpp
rename to lldb/test/API/functionalities/tail_call_frames/ambiguous_tail_call_seq1/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq2/Makefile b/lldb/test/API/functionalities/tail_call_frames/ambiguous_tail_call_seq2/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq2/Makefile
rename to lldb/test/API/functionalities/tail_call_frames/ambiguous_tail_call_seq2/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq2/TestAmbiguousTailCallSeq2.py b/lldb/test/API/functionalities/tail_call_frames/ambiguous_tail_call_seq2/TestAmbiguousTailCallSeq2.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq2/TestAmbiguousTailCallSeq2.py
rename to lldb/test/API/functionalities/tail_call_frames/ambiguous_tail_call_seq2/TestAmbiguousTailCallSeq2.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq2/main.cpp b/lldb/test/API/functionalities/tail_call_frames/ambiguous_tail_call_seq2/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq2/main.cpp
rename to lldb/test/API/functionalities/tail_call_frames/ambiguous_tail_call_seq2/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_dso/Makefile b/lldb/test/API/functionalities/tail_call_frames/cross_dso/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_dso/Makefile
rename to lldb/test/API/functionalities/tail_call_frames/cross_dso/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_dso/One.mk b/lldb/test/API/functionalities/tail_call_frames/cross_dso/One.mk
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_dso/One.mk
rename to lldb/test/API/functionalities/tail_call_frames/cross_dso/One.mk

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_dso/One/One.c b/lldb/test/API/functionalities/tail_call_frames/cross_dso/One/One.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_dso/One/One.c
rename to lldb/test/API/functionalities/tail_call_frames/cross_dso/One/One.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_dso/TestCrossDSOTailCalls.py b/lldb/test/API/functionalities/tail_call_frames/cross_dso/TestCrossDSOTailCalls.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_dso/TestCrossDSOTailCalls.py
rename to lldb/test/API/functionalities/tail_call_frames/cross_dso/TestCrossDSOTailCalls.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_dso/Two.mk b/lldb/test/API/functionalities/tail_call_frames/cross_dso/Two.mk
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_dso/Two.mk
rename to lldb/test/API/functionalities/tail_call_frames/cross_dso/Two.mk

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_dso/Two/Two.c b/lldb/test/API/functionalities/tail_call_frames/cross_dso/Two/Two.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_dso/Two/Two.c
rename to lldb/test/API/functionalities/tail_call_frames/cross_dso/Two/Two.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_dso/main.c b/lldb/test/API/functionalities/tail_call_frames/cross_dso/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_dso/main.c
rename to lldb/test/API/functionalities/tail_call_frames/cross_dso/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_dso/shared.h b/lldb/test/API/functionalities/tail_call_frames/cross_dso/shared.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_dso/shared.h
rename to lldb/test/API/functionalities/tail_call_frames/cross_dso/shared.h

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_object/Makefile b/lldb/test/API/functionalities/tail_call_frames/cross_object/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_object/Makefile
rename to lldb/test/API/functionalities/tail_call_frames/cross_object/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_object/One.c b/lldb/test/API/functionalities/tail_call_frames/cross_object/One.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_object/One.c
rename to lldb/test/API/functionalities/tail_call_frames/cross_object/One.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_object/TestCrossObjectTailCalls.py b/lldb/test/API/functionalities/tail_call_frames/cross_object/TestCrossObjectTailCalls.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_object/TestCrossObjectTailCalls.py
rename to lldb/test/API/functionalities/tail_call_frames/cross_object/TestCrossObjectTailCalls.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_object/Two.c b/lldb/test/API/functionalities/tail_call_frames/cross_object/Two.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_object/Two.c
rename to lldb/test/API/functionalities/tail_call_frames/cross_object/Two.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_object/main.c b/lldb/test/API/functionalities/tail_call_frames/cross_object/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_object/main.c
rename to lldb/test/API/functionalities/tail_call_frames/cross_object/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_object/shared.h b/lldb/test/API/functionalities/tail_call_frames/cross_object/shared.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/cross_object/shared.h
rename to lldb/test/API/functionalities/tail_call_frames/cross_object/shared.h

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_call_site/Makefile b/lldb/test/API/functionalities/tail_call_frames/disambiguate_call_site/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_call_site/Makefile
rename to lldb/test/API/functionalities/tail_call_frames/disambiguate_call_site/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_call_site/TestDisambiguateCallSite.py b/lldb/test/API/functionalities/tail_call_frames/disambiguate_call_site/TestDisambiguateCallSite.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_call_site/TestDisambiguateCallSite.py
rename to lldb/test/API/functionalities/tail_call_frames/disambiguate_call_site/TestDisambiguateCallSite.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_call_site/main.cpp b/lldb/test/API/functionalities/tail_call_frames/disambiguate_call_site/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_call_site/main.cpp
rename to lldb/test/API/functionalities/tail_call_frames/disambiguate_call_site/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/Makefile b/lldb/test/API/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/Makefile
rename to lldb/test/API/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/TestDisambiguatePathsToCommonSink.py b/lldb/test/API/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/TestDisambiguatePathsToCommonSink.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/TestDisambiguatePathsToCommonSink.py
rename to lldb/test/API/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/TestDisambiguatePathsToCommonSink.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/main.cpp b/lldb/test/API/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/main.cpp
rename to lldb/test/API/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_tail_call_seq/Makefile b/lldb/test/API/functionalities/tail_call_frames/disambiguate_tail_call_seq/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_tail_call_seq/Makefile
rename to lldb/test/API/functionalities/tail_call_frames/disambiguate_tail_call_seq/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_tail_call_seq/TestDisambiguateTailCallSeq.py b/lldb/test/API/functionalities/tail_call_frames/disambiguate_tail_call_seq/TestDisambiguateTailCallSeq.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_tail_call_seq/TestDisambiguateTailCallSeq.py
rename to lldb/test/API/functionalities/tail_call_frames/disambiguate_tail_call_seq/TestDisambiguateTailCallSeq.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_tail_call_seq/main.cpp b/lldb/test/API/functionalities/tail_call_frames/disambiguate_tail_call_seq/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_tail_call_seq/main.cpp
rename to lldb/test/API/functionalities/tail_call_frames/disambiguate_tail_call_seq/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/inlining_and_tail_calls/Makefile b/lldb/test/API/functionalities/tail_call_frames/inlining_and_tail_calls/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/inlining_and_tail_calls/Makefile
rename to lldb/test/API/functionalities/tail_call_frames/inlining_and_tail_calls/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/inlining_and_tail_calls/TestInliningAndTailCalls.py b/lldb/test/API/functionalities/tail_call_frames/inlining_and_tail_calls/TestInliningAndTailCalls.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/inlining_and_tail_calls/TestInliningAndTailCalls.py
rename to lldb/test/API/functionalities/tail_call_frames/inlining_and_tail_calls/TestInliningAndTailCalls.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/inlining_and_tail_calls/main.cpp b/lldb/test/API/functionalities/tail_call_frames/inlining_and_tail_calls/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/inlining_and_tail_calls/main.cpp
rename to lldb/test/API/functionalities/tail_call_frames/inlining_and_tail_calls/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/Makefile b/lldb/test/API/functionalities/tail_call_frames/sbapi_support/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/Makefile
rename to lldb/test/API/functionalities/tail_call_frames/sbapi_support/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/TestTailCallFrameSBAPI.py b/lldb/test/API/functionalities/tail_call_frames/sbapi_support/TestTailCallFrameSBAPI.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/TestTailCallFrameSBAPI.py
rename to lldb/test/API/functionalities/tail_call_frames/sbapi_support/TestTailCallFrameSBAPI.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/main.cpp b/lldb/test/API/functionalities/tail_call_frames/sbapi_support/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/main.cpp
rename to lldb/test/API/functionalities/tail_call_frames/sbapi_support/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_message/Makefile b/lldb/test/API/functionalities/tail_call_frames/thread_step_out_message/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_message/Makefile
rename to lldb/test/API/functionalities/tail_call_frames/thread_step_out_message/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_message/TestArtificialFrameStepOutMessage.py b/lldb/test/API/functionalities/tail_call_frames/thread_step_out_message/TestArtificialFrameStepOutMessage.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_message/TestArtificialFrameStepOutMessage.py
rename to lldb/test/API/functionalities/tail_call_frames/thread_step_out_message/TestArtificialFrameStepOutMessage.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_message/main.cpp b/lldb/test/API/functionalities/tail_call_frames/thread_step_out_message/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_message/main.cpp
rename to lldb/test/API/functionalities/tail_call_frames/thread_step_out_message/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/Makefile b/lldb/test/API/functionalities/tail_call_frames/thread_step_out_or_return/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/Makefile
rename to lldb/test/API/functionalities/tail_call_frames/thread_step_out_or_return/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/TestSteppingOutWithArtificialFrames.py b/lldb/test/API/functionalities/tail_call_frames/thread_step_out_or_return/TestSteppingOutWithArtificialFrames.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/TestSteppingOutWithArtificialFrames.py
rename to lldb/test/API/functionalities/tail_call_frames/thread_step_out_or_return/TestSteppingOutWithArtificialFrames.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/main.cpp b/lldb/test/API/functionalities/tail_call_frames/thread_step_out_or_return/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/main.cpp
rename to lldb/test/API/functionalities/tail_call_frames/thread_step_out_or_return/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/unambiguous_sequence/Makefile b/lldb/test/API/functionalities/tail_call_frames/unambiguous_sequence/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/unambiguous_sequence/Makefile
rename to lldb/test/API/functionalities/tail_call_frames/unambiguous_sequence/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/unambiguous_sequence/TestUnambiguousTailCalls.py b/lldb/test/API/functionalities/tail_call_frames/unambiguous_sequence/TestUnambiguousTailCalls.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/unambiguous_sequence/TestUnambiguousTailCalls.py
rename to lldb/test/API/functionalities/tail_call_frames/unambiguous_sequence/TestUnambiguousTailCalls.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/unambiguous_sequence/main.cpp b/lldb/test/API/functionalities/tail_call_frames/unambiguous_sequence/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/unambiguous_sequence/main.cpp
rename to lldb/test/API/functionalities/tail_call_frames/unambiguous_sequence/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/target-new-solib-notifications/Makefile b/lldb/test/API/functionalities/target-new-solib-notifications/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/target-new-solib-notifications/Makefile
rename to lldb/test/API/functionalities/target-new-solib-notifications/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/target-new-solib-notifications/TestModuleLoadedNotifys.py b/lldb/test/API/functionalities/target-new-solib-notifications/TestModuleLoadedNotifys.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/target-new-solib-notifications/TestModuleLoadedNotifys.py
rename to lldb/test/API/functionalities/target-new-solib-notifications/TestModuleLoadedNotifys.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/target-new-solib-notifications/main.cpp b/lldb/test/API/functionalities/target-new-solib-notifications/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/target-new-solib-notifications/main.cpp
rename to lldb/test/API/functionalities/target-new-solib-notifications/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/target_var/Makefile b/lldb/test/API/functionalities/target_var/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/target_var/Makefile
rename to lldb/test/API/functionalities/target_var/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/target_var/TestTargetVar.py b/lldb/test/API/functionalities/target_var/TestTargetVar.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/target_var/TestTargetVar.py
rename to lldb/test/API/functionalities/target_var/TestTargetVar.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/target_var/globals.c b/lldb/test/API/functionalities/target_var/globals.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/target_var/globals.c
rename to lldb/test/API/functionalities/target_var/globals.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/target_var/globals.ll b/lldb/test/API/functionalities/target_var/globals.ll
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/target_var/globals.ll
rename to lldb/test/API/functionalities/target_var/globals.ll

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/testid/TestTestId.py b/lldb/test/API/functionalities/testid/TestTestId.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/testid/TestTestId.py
rename to lldb/test/API/functionalities/testid/TestTestId.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/Makefile b/lldb/test/API/functionalities/thread/backtrace_all/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/Makefile
rename to lldb/test/API/functionalities/thread/backtrace_all/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/ParallelTask.cpp b/lldb/test/API/functionalities/thread/backtrace_all/ParallelTask.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/ParallelTask.cpp
rename to lldb/test/API/functionalities/thread/backtrace_all/ParallelTask.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/TestBacktraceAll.py b/lldb/test/API/functionalities/thread/backtrace_all/TestBacktraceAll.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/TestBacktraceAll.py
rename to lldb/test/API/functionalities/thread/backtrace_all/TestBacktraceAll.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_limit/Makefile b/lldb/test/API/functionalities/thread/backtrace_limit/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_limit/Makefile
rename to lldb/test/API/functionalities/thread/backtrace_limit/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_limit/TestBacktraceLimit.py b/lldb/test/API/functionalities/thread/backtrace_limit/TestBacktraceLimit.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_limit/TestBacktraceLimit.py
rename to lldb/test/API/functionalities/thread/backtrace_limit/TestBacktraceLimit.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_limit/main.cpp b/lldb/test/API/functionalities/thread/backtrace_limit/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_limit/main.cpp
rename to lldb/test/API/functionalities/thread/backtrace_limit/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/break_after_join/Makefile b/lldb/test/API/functionalities/thread/break_after_join/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/break_after_join/Makefile
rename to lldb/test/API/functionalities/thread/break_after_join/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/break_after_join/TestBreakAfterJoin.py b/lldb/test/API/functionalities/thread/break_after_join/TestBreakAfterJoin.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/break_after_join/TestBreakAfterJoin.py
rename to lldb/test/API/functionalities/thread/break_after_join/TestBreakAfterJoin.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/break_after_join/main.cpp b/lldb/test/API/functionalities/thread/break_after_join/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/break_after_join/main.cpp
rename to lldb/test/API/functionalities/thread/break_after_join/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/Makefile b/lldb/test/API/functionalities/thread/concurrent_events/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/Makefile
rename to lldb/test/API/functionalities/thread/concurrent_events/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentBreakpointDelayBreakpointOneSignal.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentBreakpointDelayBreakpointOneSignal.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentBreakpointDelayBreakpointOneSignal.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentBreakpointDelayBreakpointOneSignal.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentBreakpointOneDelayBreakpointThreads.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentBreakpointOneDelayBreakpointThreads.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentBreakpointOneDelayBreakpointThreads.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentBreakpointOneDelayBreakpointThreads.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentBreakpointsDelayedBreakpointOneWatchpoint.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentBreakpointsDelayedBreakpointOneWatchpoint.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentBreakpointsDelayedBreakpointOneWatchpoint.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentBreakpointsDelayedBreakpointOneWatchpoint.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentCrashWithBreak.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentCrashWithBreak.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentCrashWithBreak.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentCrashWithBreak.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentCrashWithSignal.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentCrashWithSignal.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentCrashWithSignal.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentCrashWithSignal.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentCrashWithWatchpoint.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentCrashWithWatchpoint.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentCrashWithWatchpoint.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentCrashWithWatchpoint.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentCrashWithWatchpointBreakpointSignal.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentCrashWithWatchpointBreakpointSignal.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentCrashWithWatchpointBreakpointSignal.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentCrashWithWatchpointBreakpointSignal.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelaySignalBreak.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentDelaySignalBreak.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelaySignalBreak.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentDelaySignalBreak.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelaySignalWatch.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentDelaySignalWatch.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelaySignalWatch.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentDelaySignalWatch.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelayWatchBreak.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentDelayWatchBreak.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelayWatchBreak.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentDelayWatchBreak.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelayedCrashWithBreakpointSignal.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentDelayedCrashWithBreakpointSignal.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelayedCrashWithBreakpointSignal.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentDelayedCrashWithBreakpointSignal.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelayedCrashWithBreakpointWatchpoint.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentDelayedCrashWithBreakpointWatchpoint.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelayedCrashWithBreakpointWatchpoint.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentDelayedCrashWithBreakpointWatchpoint.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManyBreakpoints.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentManyBreakpoints.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManyBreakpoints.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentManyBreakpoints.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManyCrash.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentManyCrash.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManyCrash.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentManyCrash.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManySignals.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentManySignals.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManySignals.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentManySignals.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManyWatchpoints.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentManyWatchpoints.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManyWatchpoints.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentManyWatchpoints.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentNWatchNBreak.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentNWatchNBreak.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentNWatchNBreak.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentNWatchNBreak.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalBreak.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentSignalBreak.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalBreak.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentSignalBreak.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalDelayBreak.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentSignalDelayBreak.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalDelayBreak.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentSignalDelayBreak.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalDelayWatch.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentSignalDelayWatch.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalDelayWatch.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentSignalDelayWatch.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalNWatchNBreak.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentSignalNWatchNBreak.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalNWatchNBreak.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentSignalNWatchNBreak.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalWatch.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentSignalWatch.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalWatch.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentSignalWatch.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalWatchBreak.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentSignalWatchBreak.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalWatchBreak.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentSignalWatchBreak.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointThreads.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointThreads.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointThreads.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointThreads.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneDelaySignal.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneDelaySignal.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneDelaySignal.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneDelaySignal.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneSignal.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneSignal.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneSignal.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneSignal.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneWatchpoint.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneWatchpoint.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneWatchpoint.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneWatchpoint.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointThreads.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointThreads.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointThreads.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointThreads.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneBreakpoint.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneBreakpoint.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneBreakpoint.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneBreakpoint.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneDelayBreakpoint.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneDelayBreakpoint.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneDelayBreakpoint.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneDelayBreakpoint.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneSignal.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneSignal.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneSignal.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneSignal.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentWatchBreak.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentWatchBreak.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentWatchBreak.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentWatchBreak.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentWatchBreakDelay.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentWatchBreakDelay.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentWatchBreakDelay.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentWatchBreakDelay.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentWatchpointDelayWatchpointOneBreakpoint.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentWatchpointDelayWatchpointOneBreakpoint.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentWatchpointDelayWatchpointOneBreakpoint.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentWatchpointDelayWatchpointOneBreakpoint.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentWatchpointWithDelayWatchpointThreads.py b/lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentWatchpointWithDelayWatchpointThreads.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentWatchpointWithDelayWatchpointThreads.py
rename to lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentWatchpointWithDelayWatchpointThreads.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/main.cpp b/lldb/test/API/functionalities/thread/concurrent_events/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/main.cpp
rename to lldb/test/API/functionalities/thread/concurrent_events/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/crash_during_step/Makefile b/lldb/test/API/functionalities/thread/crash_during_step/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/crash_during_step/Makefile
rename to lldb/test/API/functionalities/thread/crash_during_step/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/crash_during_step/TestCrashDuringStep.py b/lldb/test/API/functionalities/thread/crash_during_step/TestCrashDuringStep.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/crash_during_step/TestCrashDuringStep.py
rename to lldb/test/API/functionalities/thread/crash_during_step/TestCrashDuringStep.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/crash_during_step/main.cpp b/lldb/test/API/functionalities/thread/crash_during_step/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/crash_during_step/main.cpp
rename to lldb/test/API/functionalities/thread/crash_during_step/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/Makefile b/lldb/test/API/functionalities/thread/create_after_attach/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/Makefile
rename to lldb/test/API/functionalities/thread/create_after_attach/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/TestCreateAfterAttach.py b/lldb/test/API/functionalities/thread/create_after_attach/TestCreateAfterAttach.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/TestCreateAfterAttach.py
rename to lldb/test/API/functionalities/thread/create_after_attach/TestCreateAfterAttach.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/main.cpp b/lldb/test/API/functionalities/thread/create_after_attach/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/main.cpp
rename to lldb/test/API/functionalities/thread/create_after_attach/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/create_during_step/Makefile b/lldb/test/API/functionalities/thread/create_during_step/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/create_during_step/Makefile
rename to lldb/test/API/functionalities/thread/create_during_step/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/create_during_step/TestCreateDuringStep.py b/lldb/test/API/functionalities/thread/create_during_step/TestCreateDuringStep.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/create_during_step/TestCreateDuringStep.py
rename to lldb/test/API/functionalities/thread/create_during_step/TestCreateDuringStep.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/create_during_step/main.cpp b/lldb/test/API/functionalities/thread/create_during_step/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/create_during_step/main.cpp
rename to lldb/test/API/functionalities/thread/create_during_step/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/Makefile b/lldb/test/API/functionalities/thread/exit_during_break/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/Makefile
rename to lldb/test/API/functionalities/thread/exit_during_break/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/TestExitDuringBreak.py b/lldb/test/API/functionalities/thread/exit_during_break/TestExitDuringBreak.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/TestExitDuringBreak.py
rename to lldb/test/API/functionalities/thread/exit_during_break/TestExitDuringBreak.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/main.cpp b/lldb/test/API/functionalities/thread/exit_during_break/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/main.cpp
rename to lldb/test/API/functionalities/thread/exit_during_break/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/Makefile b/lldb/test/API/functionalities/thread/exit_during_step/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/Makefile
rename to lldb/test/API/functionalities/thread/exit_during_step/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/TestExitDuringStep.py b/lldb/test/API/functionalities/thread/exit_during_step/TestExitDuringStep.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/TestExitDuringStep.py
rename to lldb/test/API/functionalities/thread/exit_during_step/TestExitDuringStep.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/main.cpp b/lldb/test/API/functionalities/thread/exit_during_step/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/main.cpp
rename to lldb/test/API/functionalities/thread/exit_during_step/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/Makefile b/lldb/test/API/functionalities/thread/jump/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/Makefile
rename to lldb/test/API/functionalities/thread/jump/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/TestThreadJump.py b/lldb/test/API/functionalities/thread/jump/TestThreadJump.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/TestThreadJump.py
rename to lldb/test/API/functionalities/thread/jump/TestThreadJump.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/main.cpp b/lldb/test/API/functionalities/thread/jump/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/main.cpp
rename to lldb/test/API/functionalities/thread/jump/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/other.cpp b/lldb/test/API/functionalities/thread/jump/other.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/other.cpp
rename to lldb/test/API/functionalities/thread/jump/other.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/multi_break/Makefile b/lldb/test/API/functionalities/thread/multi_break/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/multi_break/Makefile
rename to lldb/test/API/functionalities/thread/multi_break/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/multi_break/TestMultipleBreakpoints.py b/lldb/test/API/functionalities/thread/multi_break/TestMultipleBreakpoints.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/multi_break/TestMultipleBreakpoints.py
rename to lldb/test/API/functionalities/thread/multi_break/TestMultipleBreakpoints.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/multi_break/main.cpp b/lldb/test/API/functionalities/thread/multi_break/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/multi_break/main.cpp
rename to lldb/test/API/functionalities/thread/multi_break/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/num_threads/Makefile b/lldb/test/API/functionalities/thread/num_threads/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/num_threads/Makefile
rename to lldb/test/API/functionalities/thread/num_threads/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/num_threads/TestNumThreads.py b/lldb/test/API/functionalities/thread/num_threads/TestNumThreads.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/num_threads/TestNumThreads.py
rename to lldb/test/API/functionalities/thread/num_threads/TestNumThreads.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/num_threads/main.cpp b/lldb/test/API/functionalities/thread/num_threads/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/num_threads/main.cpp
rename to lldb/test/API/functionalities/thread/num_threads/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/state/Makefile b/lldb/test/API/functionalities/thread/state/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/state/Makefile
rename to lldb/test/API/functionalities/thread/state/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/state/TestThreadStates.py b/lldb/test/API/functionalities/thread/state/TestThreadStates.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/state/TestThreadStates.py
rename to lldb/test/API/functionalities/thread/state/TestThreadStates.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/state/main.cpp b/lldb/test/API/functionalities/thread/state/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/state/main.cpp
rename to lldb/test/API/functionalities/thread/state/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_out/Makefile b/lldb/test/API/functionalities/thread/step_out/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/step_out/Makefile
rename to lldb/test/API/functionalities/thread/step_out/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_out/TestThreadStepOut.py b/lldb/test/API/functionalities/thread/step_out/TestThreadStepOut.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/step_out/TestThreadStepOut.py
rename to lldb/test/API/functionalities/thread/step_out/TestThreadStepOut.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_out/main.cpp b/lldb/test/API/functionalities/thread/step_out/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/step_out/main.cpp
rename to lldb/test/API/functionalities/thread/step_out/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/.categories b/lldb/test/API/functionalities/thread/step_until/.categories
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/.categories
rename to lldb/test/API/functionalities/thread/step_until/.categories

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/Makefile b/lldb/test/API/functionalities/thread/step_until/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/Makefile
rename to lldb/test/API/functionalities/thread/step_until/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/TestStepUntil.py b/lldb/test/API/functionalities/thread/step_until/TestStepUntil.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/TestStepUntil.py
rename to lldb/test/API/functionalities/thread/step_until/TestStepUntil.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/main.c b/lldb/test/API/functionalities/thread/step_until/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/main.c
rename to lldb/test/API/functionalities/thread/step_until/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_exit/Makefile b/lldb/test/API/functionalities/thread/thread_exit/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_exit/Makefile
rename to lldb/test/API/functionalities/thread/thread_exit/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_exit/TestThreadExit.py b/lldb/test/API/functionalities/thread/thread_exit/TestThreadExit.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_exit/TestThreadExit.py
rename to lldb/test/API/functionalities/thread/thread_exit/TestThreadExit.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_exit/main.cpp b/lldb/test/API/functionalities/thread/thread_exit/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_exit/main.cpp
rename to lldb/test/API/functionalities/thread/thread_exit/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break/Makefile b/lldb/test/API/functionalities/thread/thread_specific_break/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break/Makefile
rename to lldb/test/API/functionalities/thread/thread_specific_break/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break/TestThreadSpecificBreakpoint.py b/lldb/test/API/functionalities/thread/thread_specific_break/TestThreadSpecificBreakpoint.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break/TestThreadSpecificBreakpoint.py
rename to lldb/test/API/functionalities/thread/thread_specific_break/TestThreadSpecificBreakpoint.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break/main.cpp b/lldb/test/API/functionalities/thread/thread_specific_break/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break/main.cpp
rename to lldb/test/API/functionalities/thread/thread_specific_break/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/Makefile b/lldb/test/API/functionalities/thread/thread_specific_break_plus_condition/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/Makefile
rename to lldb/test/API/functionalities/thread/thread_specific_break_plus_condition/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/TestThreadSpecificBpPlusCondition.py b/lldb/test/API/functionalities/thread/thread_specific_break_plus_condition/TestThreadSpecificBpPlusCondition.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/TestThreadSpecificBpPlusCondition.py
rename to lldb/test/API/functionalities/thread/thread_specific_break_plus_condition/TestThreadSpecificBpPlusCondition.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/main.cpp b/lldb/test/API/functionalities/thread/thread_specific_break_plus_condition/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/main.cpp
rename to lldb/test/API/functionalities/thread/thread_specific_break_plus_condition/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tsan/basic/Makefile b/lldb/test/API/functionalities/tsan/basic/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tsan/basic/Makefile
rename to lldb/test/API/functionalities/tsan/basic/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tsan/basic/TestTsanBasic.py b/lldb/test/API/functionalities/tsan/basic/TestTsanBasic.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tsan/basic/TestTsanBasic.py
rename to lldb/test/API/functionalities/tsan/basic/TestTsanBasic.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tsan/basic/main.c b/lldb/test/API/functionalities/tsan/basic/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tsan/basic/main.c
rename to lldb/test/API/functionalities/tsan/basic/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tsan/cpp_global_location/Makefile b/lldb/test/API/functionalities/tsan/cpp_global_location/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tsan/cpp_global_location/Makefile
rename to lldb/test/API/functionalities/tsan/cpp_global_location/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tsan/cpp_global_location/TestTsanCPPGlobalLocation.py b/lldb/test/API/functionalities/tsan/cpp_global_location/TestTsanCPPGlobalLocation.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tsan/cpp_global_location/TestTsanCPPGlobalLocation.py
rename to lldb/test/API/functionalities/tsan/cpp_global_location/TestTsanCPPGlobalLocation.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tsan/cpp_global_location/main.cpp b/lldb/test/API/functionalities/tsan/cpp_global_location/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tsan/cpp_global_location/main.cpp
rename to lldb/test/API/functionalities/tsan/cpp_global_location/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tsan/global_location/Makefile b/lldb/test/API/functionalities/tsan/global_location/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tsan/global_location/Makefile
rename to lldb/test/API/functionalities/tsan/global_location/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tsan/global_location/TestTsanGlobalLocation.py b/lldb/test/API/functionalities/tsan/global_location/TestTsanGlobalLocation.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tsan/global_location/TestTsanGlobalLocation.py
rename to lldb/test/API/functionalities/tsan/global_location/TestTsanGlobalLocation.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tsan/global_location/main.c b/lldb/test/API/functionalities/tsan/global_location/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tsan/global_location/main.c
rename to lldb/test/API/functionalities/tsan/global_location/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tsan/multiple/Makefile b/lldb/test/API/functionalities/tsan/multiple/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tsan/multiple/Makefile
rename to lldb/test/API/functionalities/tsan/multiple/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tsan/multiple/TestTsanMultiple.py b/lldb/test/API/functionalities/tsan/multiple/TestTsanMultiple.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tsan/multiple/TestTsanMultiple.py
rename to lldb/test/API/functionalities/tsan/multiple/TestTsanMultiple.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tsan/multiple/main.m b/lldb/test/API/functionalities/tsan/multiple/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tsan/multiple/main.m
rename to lldb/test/API/functionalities/tsan/multiple/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_leak/Makefile b/lldb/test/API/functionalities/tsan/thread_leak/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_leak/Makefile
rename to lldb/test/API/functionalities/tsan/thread_leak/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_leak/TestTsanThreadLeak.py b/lldb/test/API/functionalities/tsan/thread_leak/TestTsanThreadLeak.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_leak/TestTsanThreadLeak.py
rename to lldb/test/API/functionalities/tsan/thread_leak/TestTsanThreadLeak.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_leak/main.c b/lldb/test/API/functionalities/tsan/thread_leak/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_leak/main.c
rename to lldb/test/API/functionalities/tsan/thread_leak/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_numbers/Makefile b/lldb/test/API/functionalities/tsan/thread_numbers/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_numbers/Makefile
rename to lldb/test/API/functionalities/tsan/thread_numbers/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_numbers/TestTsanThreadNumbers.py b/lldb/test/API/functionalities/tsan/thread_numbers/TestTsanThreadNumbers.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_numbers/TestTsanThreadNumbers.py
rename to lldb/test/API/functionalities/tsan/thread_numbers/TestTsanThreadNumbers.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_numbers/main.c b/lldb/test/API/functionalities/tsan/thread_numbers/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_numbers/main.c
rename to lldb/test/API/functionalities/tsan/thread_numbers/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tty/Makefile b/lldb/test/API/functionalities/tty/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tty/Makefile
rename to lldb/test/API/functionalities/tty/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tty/TestTerminal.py b/lldb/test/API/functionalities/tty/TestTerminal.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tty/TestTerminal.py
rename to lldb/test/API/functionalities/tty/TestTerminal.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/tty/main.c b/lldb/test/API/functionalities/tty/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/tty/main.c
rename to lldb/test/API/functionalities/tty/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/type_completion/Makefile b/lldb/test/API/functionalities/type_completion/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/type_completion/Makefile
rename to lldb/test/API/functionalities/type_completion/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/type_completion/TestTypeCompletion.py b/lldb/test/API/functionalities/type_completion/TestTypeCompletion.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/type_completion/TestTypeCompletion.py
rename to lldb/test/API/functionalities/type_completion/TestTypeCompletion.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/type_completion/main.cpp b/lldb/test/API/functionalities/type_completion/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/type_completion/main.cpp
rename to lldb/test/API/functionalities/type_completion/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/type_lookup/Makefile b/lldb/test/API/functionalities/type_lookup/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/type_lookup/Makefile
rename to lldb/test/API/functionalities/type_lookup/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/type_lookup/TestTypeLookup.py b/lldb/test/API/functionalities/type_lookup/TestTypeLookup.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/type_lookup/TestTypeLookup.py
rename to lldb/test/API/functionalities/type_lookup/TestTypeLookup.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/type_lookup/main.mm b/lldb/test/API/functionalities/type_lookup/main.mm
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/type_lookup/main.mm
rename to lldb/test/API/functionalities/type_lookup/main.mm

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/ubsan/basic/Makefile b/lldb/test/API/functionalities/ubsan/basic/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/ubsan/basic/Makefile
rename to lldb/test/API/functionalities/ubsan/basic/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/ubsan/basic/TestUbsanBasic.py b/lldb/test/API/functionalities/ubsan/basic/TestUbsanBasic.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/ubsan/basic/TestUbsanBasic.py
rename to lldb/test/API/functionalities/ubsan/basic/TestUbsanBasic.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/ubsan/basic/main.c b/lldb/test/API/functionalities/ubsan/basic/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/ubsan/basic/main.c
rename to lldb/test/API/functionalities/ubsan/basic/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/ubsan/user-expression/Makefile b/lldb/test/API/functionalities/ubsan/user-expression/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/ubsan/user-expression/Makefile
rename to lldb/test/API/functionalities/ubsan/user-expression/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/ubsan/user-expression/TestUbsanUserExpression.py b/lldb/test/API/functionalities/ubsan/user-expression/TestUbsanUserExpression.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/ubsan/user-expression/TestUbsanUserExpression.py
rename to lldb/test/API/functionalities/ubsan/user-expression/TestUbsanUserExpression.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/ubsan/user-expression/main.c b/lldb/test/API/functionalities/ubsan/user-expression/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/ubsan/user-expression/main.c
rename to lldb/test/API/functionalities/ubsan/user-expression/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/unwind/ehframe/Makefile b/lldb/test/API/functionalities/unwind/ehframe/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/unwind/ehframe/Makefile
rename to lldb/test/API/functionalities/unwind/ehframe/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/unwind/ehframe/TestEhFrameUnwind.py b/lldb/test/API/functionalities/unwind/ehframe/TestEhFrameUnwind.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/unwind/ehframe/TestEhFrameUnwind.py
rename to lldb/test/API/functionalities/unwind/ehframe/TestEhFrameUnwind.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/unwind/ehframe/main.c b/lldb/test/API/functionalities/unwind/ehframe/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/unwind/ehframe/main.c
rename to lldb/test/API/functionalities/unwind/ehframe/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/Makefile b/lldb/test/API/functionalities/unwind/noreturn/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/Makefile
rename to lldb/test/API/functionalities/unwind/noreturn/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/TestNoreturnUnwind.py b/lldb/test/API/functionalities/unwind/noreturn/TestNoreturnUnwind.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/TestNoreturnUnwind.py
rename to lldb/test/API/functionalities/unwind/noreturn/TestNoreturnUnwind.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/main.c b/lldb/test/API/functionalities/unwind/noreturn/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/main.c
rename to lldb/test/API/functionalities/unwind/noreturn/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/module-end/TestNoReturnModuleEnd.py b/lldb/test/API/functionalities/unwind/noreturn/module-end/TestNoReturnModuleEnd.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/module-end/TestNoReturnModuleEnd.py
rename to lldb/test/API/functionalities/unwind/noreturn/module-end/TestNoReturnModuleEnd.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/module-end/a.s b/lldb/test/API/functionalities/unwind/noreturn/module-end/a.s
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/module-end/a.s
rename to lldb/test/API/functionalities/unwind/noreturn/module-end/a.s

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/module-end/test.core b/lldb/test/API/functionalities/unwind/noreturn/module-end/test.core
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/module-end/test.core
rename to lldb/test/API/functionalities/unwind/noreturn/module-end/test.core

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/module-end/test.out b/lldb/test/API/functionalities/unwind/noreturn/module-end/test.out
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/module-end/test.out
rename to lldb/test/API/functionalities/unwind/noreturn/module-end/test.out

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/unwind/sigtramp/Makefile b/lldb/test/API/functionalities/unwind/sigtramp/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/unwind/sigtramp/Makefile
rename to lldb/test/API/functionalities/unwind/sigtramp/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/unwind/sigtramp/TestSigtrampUnwind.py b/lldb/test/API/functionalities/unwind/sigtramp/TestSigtrampUnwind.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/unwind/sigtramp/TestSigtrampUnwind.py
rename to lldb/test/API/functionalities/unwind/sigtramp/TestSigtrampUnwind.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/unwind/sigtramp/main.c b/lldb/test/API/functionalities/unwind/sigtramp/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/unwind/sigtramp/main.c
rename to lldb/test/API/functionalities/unwind/sigtramp/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/Makefile b/lldb/test/API/functionalities/unwind/standard/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/Makefile
rename to lldb/test/API/functionalities/unwind/standard/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/TestStandardUnwind.py b/lldb/test/API/functionalities/unwind/standard/TestStandardUnwind.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/TestStandardUnwind.py
rename to lldb/test/API/functionalities/unwind/standard/TestStandardUnwind.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/hand_written/divmod.cpp b/lldb/test/API/functionalities/unwind/standard/hand_written/divmod.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/hand_written/divmod.cpp
rename to lldb/test/API/functionalities/unwind/standard/hand_written/divmod.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/hand_written/fprintf.cpp b/lldb/test/API/functionalities/unwind/standard/hand_written/fprintf.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/hand_written/fprintf.cpp
rename to lldb/test/API/functionalities/unwind/standard/hand_written/fprintf.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/hand_written/new_delete.cpp b/lldb/test/API/functionalities/unwind/standard/hand_written/new_delete.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/hand_written/new_delete.cpp
rename to lldb/test/API/functionalities/unwind/standard/hand_written/new_delete.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/value_md5_crash/Makefile b/lldb/test/API/functionalities/value_md5_crash/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/value_md5_crash/Makefile
rename to lldb/test/API/functionalities/value_md5_crash/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/value_md5_crash/TestValueMD5Crash.py b/lldb/test/API/functionalities/value_md5_crash/TestValueMD5Crash.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/value_md5_crash/TestValueMD5Crash.py
rename to lldb/test/API/functionalities/value_md5_crash/TestValueMD5Crash.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/value_md5_crash/main.cpp b/lldb/test/API/functionalities/value_md5_crash/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/value_md5_crash/main.cpp
rename to lldb/test/API/functionalities/value_md5_crash/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/var_path/Makefile b/lldb/test/API/functionalities/var_path/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/var_path/Makefile
rename to lldb/test/API/functionalities/var_path/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/var_path/TestVarPath.py b/lldb/test/API/functionalities/var_path/TestVarPath.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/var_path/TestVarPath.py
rename to lldb/test/API/functionalities/var_path/TestVarPath.py

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/var_path/main.cpp b/lldb/test/API/functionalities/var_path/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/var_path/main.cpp
rename to lldb/test/API/functionalities/var_path/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/wrong_commands/.categories b/lldb/test/API/functionalities/wrong_commands/.categories
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/wrong_commands/.categories
rename to lldb/test/API/functionalities/wrong_commands/.categories

diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/wrong_commands/TestWrongCommands.py b/lldb/test/API/functionalities/wrong_commands/TestWrongCommands.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/functionalities/wrong_commands/TestWrongCommands.py
rename to lldb/test/API/functionalities/wrong_commands/TestWrongCommands.py

diff  --git a/lldb/packages/Python/lldbsuite/test/iohandler/completion/TestIOHandlerCompletion.py b/lldb/test/API/iohandler/completion/TestIOHandlerCompletion.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/iohandler/completion/TestIOHandlerCompletion.py
rename to lldb/test/API/iohandler/completion/TestIOHandlerCompletion.py

diff  --git a/lldb/packages/Python/lldbsuite/test/iohandler/completion/main.c b/lldb/test/API/iohandler/completion/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/iohandler/completion/main.c
rename to lldb/test/API/iohandler/completion/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/iohandler/unicode/TestUnicode.py b/lldb/test/API/iohandler/unicode/TestUnicode.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/iohandler/unicode/TestUnicode.py
rename to lldb/test/API/iohandler/unicode/TestUnicode.py

diff  --git a/lldb/packages/Python/lldbsuite/test/issue_verification/README.txt b/lldb/test/API/issue_verification/README.txt
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/issue_verification/README.txt
rename to lldb/test/API/issue_verification/README.txt

diff  --git a/lldb/packages/Python/lldbsuite/test/issue_verification/TestExpectedTimeout.py.park b/lldb/test/API/issue_verification/TestExpectedTimeout.py.park
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/issue_verification/TestExpectedTimeout.py.park
rename to lldb/test/API/issue_verification/TestExpectedTimeout.py.park

diff  --git a/lldb/packages/Python/lldbsuite/test/issue_verification/TestFail.py.park b/lldb/test/API/issue_verification/TestFail.py.park
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/issue_verification/TestFail.py.park
rename to lldb/test/API/issue_verification/TestFail.py.park

diff  --git a/lldb/packages/Python/lldbsuite/test/issue_verification/TestInvalidDecorator.py.park b/lldb/test/API/issue_verification/TestInvalidDecorator.py.park
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/issue_verification/TestInvalidDecorator.py.park
rename to lldb/test/API/issue_verification/TestInvalidDecorator.py.park

diff  --git a/lldb/packages/Python/lldbsuite/test/issue_verification/TestRerunFail.py.park b/lldb/test/API/issue_verification/TestRerunFail.py.park
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/issue_verification/TestRerunFail.py.park
rename to lldb/test/API/issue_verification/TestRerunFail.py.park

diff  --git a/lldb/packages/Python/lldbsuite/test/issue_verification/TestRerunFileLevelTimeout.py.park b/lldb/test/API/issue_verification/TestRerunFileLevelTimeout.py.park
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/issue_verification/TestRerunFileLevelTimeout.py.park
rename to lldb/test/API/issue_verification/TestRerunFileLevelTimeout.py.park

diff  --git a/lldb/packages/Python/lldbsuite/test/issue_verification/TestRerunInline.py.park b/lldb/test/API/issue_verification/TestRerunInline.py.park
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/issue_verification/TestRerunInline.py.park
rename to lldb/test/API/issue_verification/TestRerunInline.py.park

diff  --git a/lldb/packages/Python/lldbsuite/test/issue_verification/TestRerunTimeout.py.park b/lldb/test/API/issue_verification/TestRerunTimeout.py.park
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/issue_verification/TestRerunTimeout.py.park
rename to lldb/test/API/issue_verification/TestRerunTimeout.py.park

diff  --git a/lldb/packages/Python/lldbsuite/test/issue_verification/TestSignal.py.park b/lldb/test/API/issue_verification/TestSignal.py.park
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/issue_verification/TestSignal.py.park
rename to lldb/test/API/issue_verification/TestSignal.py.park

diff  --git a/lldb/packages/Python/lldbsuite/test/issue_verification/TestSignalOutsideTestMethod.py.park b/lldb/test/API/issue_verification/TestSignalOutsideTestMethod.py.park
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/issue_verification/TestSignalOutsideTestMethod.py.park
rename to lldb/test/API/issue_verification/TestSignalOutsideTestMethod.py.park

diff  --git a/lldb/packages/Python/lldbsuite/test/issue_verification/TestTimeout.py.park b/lldb/test/API/issue_verification/TestTimeout.py.park
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/issue_verification/TestTimeout.py.park
rename to lldb/test/API/issue_verification/TestTimeout.py.park

diff  --git a/lldb/packages/Python/lldbsuite/test/issue_verification/disable.py b/lldb/test/API/issue_verification/disable.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/issue_verification/disable.py
rename to lldb/test/API/issue_verification/disable.py

diff  --git a/lldb/packages/Python/lldbsuite/test/issue_verification/enable.py b/lldb/test/API/issue_verification/enable.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/issue_verification/enable.py
rename to lldb/test/API/issue_verification/enable.py

diff  --git a/lldb/packages/Python/lldbsuite/test/issue_verification/inline_rerun_inferior.cpp b/lldb/test/API/issue_verification/inline_rerun_inferior.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/issue_verification/inline_rerun_inferior.cpp
rename to lldb/test/API/issue_verification/inline_rerun_inferior.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/issue_verification/rerun_base.py b/lldb/test/API/issue_verification/rerun_base.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/issue_verification/rerun_base.py
rename to lldb/test/API/issue_verification/rerun_base.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/anonymous/Makefile b/lldb/test/API/lang/c/anonymous/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/anonymous/Makefile
rename to lldb/test/API/lang/c/anonymous/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/anonymous/TestAnonymous.py b/lldb/test/API/lang/c/anonymous/TestAnonymous.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/anonymous/TestAnonymous.py
rename to lldb/test/API/lang/c/anonymous/TestAnonymous.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/anonymous/main.c b/lldb/test/API/lang/c/anonymous/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/anonymous/main.c
rename to lldb/test/API/lang/c/anonymous/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/array_types/Makefile b/lldb/test/API/lang/c/array_types/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/array_types/Makefile
rename to lldb/test/API/lang/c/array_types/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/array_types/TestArrayTypes.py b/lldb/test/API/lang/c/array_types/TestArrayTypes.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/array_types/TestArrayTypes.py
rename to lldb/test/API/lang/c/array_types/TestArrayTypes.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/array_types/cmds.txt b/lldb/test/API/lang/c/array_types/cmds.txt
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/array_types/cmds.txt
rename to lldb/test/API/lang/c/array_types/cmds.txt

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/array_types/main.c b/lldb/test/API/lang/c/array_types/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/array_types/main.c
rename to lldb/test/API/lang/c/array_types/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/bitfields/Makefile b/lldb/test/API/lang/c/bitfields/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/bitfields/Makefile
rename to lldb/test/API/lang/c/bitfields/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/bitfields/TestBitfields.py b/lldb/test/API/lang/c/bitfields/TestBitfields.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/bitfields/TestBitfields.py
rename to lldb/test/API/lang/c/bitfields/TestBitfields.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/bitfields/main.c b/lldb/test/API/lang/c/bitfields/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/bitfields/main.c
rename to lldb/test/API/lang/c/bitfields/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/blocks/Makefile b/lldb/test/API/lang/c/blocks/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/blocks/Makefile
rename to lldb/test/API/lang/c/blocks/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/blocks/TestBlocks.py b/lldb/test/API/lang/c/blocks/TestBlocks.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/blocks/TestBlocks.py
rename to lldb/test/API/lang/c/blocks/TestBlocks.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/blocks/main.c b/lldb/test/API/lang/c/blocks/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/blocks/main.c
rename to lldb/test/API/lang/c/blocks/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Makefile b/lldb/test/API/lang/c/conflicting-symbol/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Makefile
rename to lldb/test/API/lang/c/conflicting-symbol/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One.mk b/lldb/test/API/lang/c/conflicting-symbol/One.mk
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One.mk
rename to lldb/test/API/lang/c/conflicting-symbol/One.mk

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One/One.c b/lldb/test/API/lang/c/conflicting-symbol/One/One.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One/One.c
rename to lldb/test/API/lang/c/conflicting-symbol/One/One.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One/One.h b/lldb/test/API/lang/c/conflicting-symbol/One/One.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One/One.h
rename to lldb/test/API/lang/c/conflicting-symbol/One/One.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One/OneConstant.c b/lldb/test/API/lang/c/conflicting-symbol/One/OneConstant.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One/OneConstant.c
rename to lldb/test/API/lang/c/conflicting-symbol/One/OneConstant.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/TestConflictingSymbol.py b/lldb/test/API/lang/c/conflicting-symbol/TestConflictingSymbol.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/TestConflictingSymbol.py
rename to lldb/test/API/lang/c/conflicting-symbol/TestConflictingSymbol.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two.mk b/lldb/test/API/lang/c/conflicting-symbol/Two.mk
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two.mk
rename to lldb/test/API/lang/c/conflicting-symbol/Two.mk

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two/Two.c b/lldb/test/API/lang/c/conflicting-symbol/Two/Two.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two/Two.c
rename to lldb/test/API/lang/c/conflicting-symbol/Two/Two.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two/Two.h b/lldb/test/API/lang/c/conflicting-symbol/Two/Two.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two/Two.h
rename to lldb/test/API/lang/c/conflicting-symbol/Two/Two.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two/TwoConstant.c b/lldb/test/API/lang/c/conflicting-symbol/Two/TwoConstant.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two/TwoConstant.c
rename to lldb/test/API/lang/c/conflicting-symbol/Two/TwoConstant.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/main.c b/lldb/test/API/lang/c/conflicting-symbol/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/main.c
rename to lldb/test/API/lang/c/conflicting-symbol/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/Makefile b/lldb/test/API/lang/c/const_variables/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/const_variables/Makefile
rename to lldb/test/API/lang/c/const_variables/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py b/lldb/test/API/lang/c/const_variables/TestConstVariables.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py
rename to lldb/test/API/lang/c/const_variables/TestConstVariables.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/functions.c b/lldb/test/API/lang/c/const_variables/functions.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/const_variables/functions.c
rename to lldb/test/API/lang/c/const_variables/functions.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/main.c b/lldb/test/API/lang/c/const_variables/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/const_variables/main.c
rename to lldb/test/API/lang/c/const_variables/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/enum_types/Makefile b/lldb/test/API/lang/c/enum_types/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/enum_types/Makefile
rename to lldb/test/API/lang/c/enum_types/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/enum_types/TestEnumTypes.py b/lldb/test/API/lang/c/enum_types/TestEnumTypes.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/enum_types/TestEnumTypes.py
rename to lldb/test/API/lang/c/enum_types/TestEnumTypes.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/enum_types/main.c b/lldb/test/API/lang/c/enum_types/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/enum_types/main.c
rename to lldb/test/API/lang/c/enum_types/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/find_struct_type/Makefile b/lldb/test/API/lang/c/find_struct_type/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/find_struct_type/Makefile
rename to lldb/test/API/lang/c/find_struct_type/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/find_struct_type/TestFindStructTypes.py b/lldb/test/API/lang/c/find_struct_type/TestFindStructTypes.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/find_struct_type/TestFindStructTypes.py
rename to lldb/test/API/lang/c/find_struct_type/TestFindStructTypes.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/find_struct_type/main.c b/lldb/test/API/lang/c/find_struct_type/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/find_struct_type/main.c
rename to lldb/test/API/lang/c/find_struct_type/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/forward/Makefile b/lldb/test/API/lang/c/forward/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/forward/Makefile
rename to lldb/test/API/lang/c/forward/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/forward/README.txt b/lldb/test/API/lang/c/forward/README.txt
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/forward/README.txt
rename to lldb/test/API/lang/c/forward/README.txt

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/forward/TestForwardDeclaration.py b/lldb/test/API/lang/c/forward/TestForwardDeclaration.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/forward/TestForwardDeclaration.py
rename to lldb/test/API/lang/c/forward/TestForwardDeclaration.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/forward/foo.c b/lldb/test/API/lang/c/forward/foo.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/forward/foo.c
rename to lldb/test/API/lang/c/forward/foo.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/forward/foo.h b/lldb/test/API/lang/c/forward/foo.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/forward/foo.h
rename to lldb/test/API/lang/c/forward/foo.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/forward/main.c b/lldb/test/API/lang/c/forward/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/forward/main.c
rename to lldb/test/API/lang/c/forward/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/function_types/Makefile b/lldb/test/API/lang/c/function_types/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/function_types/Makefile
rename to lldb/test/API/lang/c/function_types/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/function_types/TestFunctionTypes.py b/lldb/test/API/lang/c/function_types/TestFunctionTypes.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/function_types/TestFunctionTypes.py
rename to lldb/test/API/lang/c/function_types/TestFunctionTypes.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/function_types/main.c b/lldb/test/API/lang/c/function_types/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/function_types/main.c
rename to lldb/test/API/lang/c/function_types/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/global_variables/Makefile b/lldb/test/API/lang/c/global_variables/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/global_variables/Makefile
rename to lldb/test/API/lang/c/global_variables/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/global_variables/TestGlobalVariables.py b/lldb/test/API/lang/c/global_variables/TestGlobalVariables.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/global_variables/TestGlobalVariables.py
rename to lldb/test/API/lang/c/global_variables/TestGlobalVariables.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/global_variables/a.c b/lldb/test/API/lang/c/global_variables/a.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/global_variables/a.c
rename to lldb/test/API/lang/c/global_variables/a.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/global_variables/cmds.txt b/lldb/test/API/lang/c/global_variables/cmds.txt
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/global_variables/cmds.txt
rename to lldb/test/API/lang/c/global_variables/cmds.txt

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/global_variables/main.c b/lldb/test/API/lang/c/global_variables/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/global_variables/main.c
rename to lldb/test/API/lang/c/global_variables/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/inlines/TestRedefinitionsInInlines.py b/lldb/test/API/lang/c/inlines/TestRedefinitionsInInlines.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/inlines/TestRedefinitionsInInlines.py
rename to lldb/test/API/lang/c/inlines/TestRedefinitionsInInlines.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/inlines/main.c b/lldb/test/API/lang/c/inlines/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/inlines/main.c
rename to lldb/test/API/lang/c/inlines/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/local_types/TestUseClosestType.py b/lldb/test/API/lang/c/local_types/TestUseClosestType.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/local_types/TestUseClosestType.py
rename to lldb/test/API/lang/c/local_types/TestUseClosestType.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/local_types/main.c b/lldb/test/API/lang/c/local_types/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/local_types/main.c
rename to lldb/test/API/lang/c/local_types/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/local_types/other.c b/lldb/test/API/lang/c/local_types/other.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/local_types/other.c
rename to lldb/test/API/lang/c/local_types/other.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/local_variables/Makefile b/lldb/test/API/lang/c/local_variables/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/local_variables/Makefile
rename to lldb/test/API/lang/c/local_variables/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/local_variables/TestLocalVariables.py b/lldb/test/API/lang/c/local_variables/TestLocalVariables.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/local_variables/TestLocalVariables.py
rename to lldb/test/API/lang/c/local_variables/TestLocalVariables.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/local_variables/main.c b/lldb/test/API/lang/c/local_variables/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/local_variables/main.c
rename to lldb/test/API/lang/c/local_variables/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/modules/Makefile b/lldb/test/API/lang/c/modules/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/modules/Makefile
rename to lldb/test/API/lang/c/modules/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/modules/TestCModules.py b/lldb/test/API/lang/c/modules/TestCModules.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/modules/TestCModules.py
rename to lldb/test/API/lang/c/modules/TestCModules.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/modules/main.c b/lldb/test/API/lang/c/modules/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/modules/main.c
rename to lldb/test/API/lang/c/modules/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/offsetof/TestOffsetof.py b/lldb/test/API/lang/c/offsetof/TestOffsetof.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/offsetof/TestOffsetof.py
rename to lldb/test/API/lang/c/offsetof/TestOffsetof.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/offsetof/main.c b/lldb/test/API/lang/c/offsetof/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/offsetof/main.c
rename to lldb/test/API/lang/c/offsetof/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/recurse/Makefile b/lldb/test/API/lang/c/recurse/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/recurse/Makefile
rename to lldb/test/API/lang/c/recurse/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/recurse/main.c b/lldb/test/API/lang/c/recurse/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/recurse/main.c
rename to lldb/test/API/lang/c/recurse/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/register_variables/Makefile b/lldb/test/API/lang/c/register_variables/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/register_variables/Makefile
rename to lldb/test/API/lang/c/register_variables/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/register_variables/TestRegisterVariables.py b/lldb/test/API/lang/c/register_variables/TestRegisterVariables.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/register_variables/TestRegisterVariables.py
rename to lldb/test/API/lang/c/register_variables/TestRegisterVariables.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/register_variables/test.c b/lldb/test/API/lang/c/register_variables/test.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/register_variables/test.c
rename to lldb/test/API/lang/c/register_variables/test.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/set_values/Makefile b/lldb/test/API/lang/c/set_values/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/set_values/Makefile
rename to lldb/test/API/lang/c/set_values/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/set_values/TestSetValues.py b/lldb/test/API/lang/c/set_values/TestSetValues.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/set_values/TestSetValues.py
rename to lldb/test/API/lang/c/set_values/TestSetValues.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/set_values/main.c b/lldb/test/API/lang/c/set_values/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/set_values/main.c
rename to lldb/test/API/lang/c/set_values/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/Makefile b/lldb/test/API/lang/c/shared_lib/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/Makefile
rename to lldb/test/API/lang/c/shared_lib/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/TestSharedLib.py b/lldb/test/API/lang/c/shared_lib/TestSharedLib.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/TestSharedLib.py
rename to lldb/test/API/lang/c/shared_lib/TestSharedLib.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/foo.c b/lldb/test/API/lang/c/shared_lib/foo.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/foo.c
rename to lldb/test/API/lang/c/shared_lib/foo.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/foo.h b/lldb/test/API/lang/c/shared_lib/foo.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/foo.h
rename to lldb/test/API/lang/c/shared_lib/foo.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/main.c b/lldb/test/API/lang/c/shared_lib/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/main.c
rename to lldb/test/API/lang/c/shared_lib/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/Makefile b/lldb/test/API/lang/c/shared_lib_stripped_symbols/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/Makefile
rename to lldb/test/API/lang/c/shared_lib_stripped_symbols/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/TestSharedLibStrippedSymbols.py b/lldb/test/API/lang/c/shared_lib_stripped_symbols/TestSharedLibStrippedSymbols.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/TestSharedLibStrippedSymbols.py
rename to lldb/test/API/lang/c/shared_lib_stripped_symbols/TestSharedLibStrippedSymbols.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/foo.c b/lldb/test/API/lang/c/shared_lib_stripped_symbols/foo.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/foo.c
rename to lldb/test/API/lang/c/shared_lib_stripped_symbols/foo.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/foo.h b/lldb/test/API/lang/c/shared_lib_stripped_symbols/foo.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/foo.h
rename to lldb/test/API/lang/c/shared_lib_stripped_symbols/foo.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/main.c b/lldb/test/API/lang/c/shared_lib_stripped_symbols/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/main.c
rename to lldb/test/API/lang/c/shared_lib_stripped_symbols/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/step-target/.categories b/lldb/test/API/lang/c/step-target/.categories
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/step-target/.categories
rename to lldb/test/API/lang/c/step-target/.categories

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/step-target/Makefile b/lldb/test/API/lang/c/step-target/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/step-target/Makefile
rename to lldb/test/API/lang/c/step-target/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/step-target/TestStepTarget.py b/lldb/test/API/lang/c/step-target/TestStepTarget.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/step-target/TestStepTarget.py
rename to lldb/test/API/lang/c/step-target/TestStepTarget.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/step-target/main.c b/lldb/test/API/lang/c/step-target/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/step-target/main.c
rename to lldb/test/API/lang/c/step-target/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/step_over_no_deadlock/Makefile b/lldb/test/API/lang/c/step_over_no_deadlock/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/step_over_no_deadlock/Makefile
rename to lldb/test/API/lang/c/step_over_no_deadlock/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/step_over_no_deadlock/TestStepOverDoesntBlock.py b/lldb/test/API/lang/c/step_over_no_deadlock/TestStepOverDoesntBlock.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/step_over_no_deadlock/TestStepOverDoesntBlock.py
rename to lldb/test/API/lang/c/step_over_no_deadlock/TestStepOverDoesntBlock.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/step_over_no_deadlock/locking.cpp b/lldb/test/API/lang/c/step_over_no_deadlock/locking.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/step_over_no_deadlock/locking.cpp
rename to lldb/test/API/lang/c/step_over_no_deadlock/locking.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/stepping/Makefile b/lldb/test/API/lang/c/stepping/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/stepping/Makefile
rename to lldb/test/API/lang/c/stepping/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/stepping/TestStepAndBreakpoints.py b/lldb/test/API/lang/c/stepping/TestStepAndBreakpoints.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/stepping/TestStepAndBreakpoints.py
rename to lldb/test/API/lang/c/stepping/TestStepAndBreakpoints.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/stepping/TestThreadStepping.py b/lldb/test/API/lang/c/stepping/TestThreadStepping.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/stepping/TestThreadStepping.py
rename to lldb/test/API/lang/c/stepping/TestThreadStepping.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/stepping/main.c b/lldb/test/API/lang/c/stepping/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/stepping/main.c
rename to lldb/test/API/lang/c/stepping/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/strings/Makefile b/lldb/test/API/lang/c/strings/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/strings/Makefile
rename to lldb/test/API/lang/c/strings/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/strings/TestCStrings.py b/lldb/test/API/lang/c/strings/TestCStrings.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/strings/TestCStrings.py
rename to lldb/test/API/lang/c/strings/TestCStrings.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/strings/main.c b/lldb/test/API/lang/c/strings/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/strings/main.c
rename to lldb/test/API/lang/c/strings/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/struct_types/TestStructTypes.py b/lldb/test/API/lang/c/struct_types/TestStructTypes.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/struct_types/TestStructTypes.py
rename to lldb/test/API/lang/c/struct_types/TestStructTypes.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/struct_types/main.c b/lldb/test/API/lang/c/struct_types/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/struct_types/main.c
rename to lldb/test/API/lang/c/struct_types/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/Makefile b/lldb/test/API/lang/c/tls_globals/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/Makefile
rename to lldb/test/API/lang/c/tls_globals/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/TestTlsGlobals.py b/lldb/test/API/lang/c/tls_globals/TestTlsGlobals.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/TestTlsGlobals.py
rename to lldb/test/API/lang/c/tls_globals/TestTlsGlobals.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/a.c b/lldb/test/API/lang/c/tls_globals/a.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/a.c
rename to lldb/test/API/lang/c/tls_globals/a.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/main.c b/lldb/test/API/lang/c/tls_globals/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/main.c
rename to lldb/test/API/lang/c/tls_globals/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/typedef/Makefile b/lldb/test/API/lang/c/typedef/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/typedef/Makefile
rename to lldb/test/API/lang/c/typedef/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/typedef/Testtypedef.py b/lldb/test/API/lang/c/typedef/Testtypedef.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/typedef/Testtypedef.py
rename to lldb/test/API/lang/c/typedef/Testtypedef.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/typedef/main.c b/lldb/test/API/lang/c/typedef/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/typedef/main.c
rename to lldb/test/API/lang/c/typedef/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/unicode/Makefile b/lldb/test/API/lang/c/unicode/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/unicode/Makefile
rename to lldb/test/API/lang/c/unicode/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py b/lldb/test/API/lang/c/unicode/TestUnicodeSymbols.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py
rename to lldb/test/API/lang/c/unicode/TestUnicodeSymbols.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/unicode/main.c b/lldb/test/API/lang/c/unicode/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/unicode/main.c
rename to lldb/test/API/lang/c/unicode/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/unions/Makefile b/lldb/test/API/lang/c/unions/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/unions/Makefile
rename to lldb/test/API/lang/c/unions/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/unions/TestUnionMembers.py b/lldb/test/API/lang/c/unions/TestUnionMembers.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/unions/TestUnionMembers.py
rename to lldb/test/API/lang/c/unions/TestUnionMembers.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/unions/main.c b/lldb/test/API/lang/c/unions/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/unions/main.c
rename to lldb/test/API/lang/c/unions/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/vla/Makefile b/lldb/test/API/lang/c/vla/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/vla/Makefile
rename to lldb/test/API/lang/c/vla/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/vla/TestVLA.py b/lldb/test/API/lang/c/vla/TestVLA.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/vla/TestVLA.py
rename to lldb/test/API/lang/c/vla/TestVLA.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/c/vla/main.c b/lldb/test/API/lang/c/vla/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/c/vla/main.c
rename to lldb/test/API/lang/c/vla/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/Makefile b/lldb/test/API/lang/cpp/accelerator-table/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/Makefile
rename to lldb/test/API/lang/cpp/accelerator-table/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/TestCPPAccelerator.py b/lldb/test/API/lang/cpp/accelerator-table/TestCPPAccelerator.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/TestCPPAccelerator.py
rename to lldb/test/API/lang/cpp/accelerator-table/TestCPPAccelerator.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/a.cpp b/lldb/test/API/lang/cpp/accelerator-table/a.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/a.cpp
rename to lldb/test/API/lang/cpp/accelerator-table/a.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/b.cpp b/lldb/test/API/lang/cpp/accelerator-table/b.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/b.cpp
rename to lldb/test/API/lang/cpp/accelerator-table/b.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/c.cpp b/lldb/test/API/lang/cpp/accelerator-table/c.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/c.cpp
rename to lldb/test/API/lang/cpp/accelerator-table/c.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/d.cpp b/lldb/test/API/lang/cpp/accelerator-table/d.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/d.cpp
rename to lldb/test/API/lang/cpp/accelerator-table/d.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/e.cpp b/lldb/test/API/lang/cpp/accelerator-table/e.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/e.cpp
rename to lldb/test/API/lang/cpp/accelerator-table/e.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/f.cpp b/lldb/test/API/lang/cpp/accelerator-table/f.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/f.cpp
rename to lldb/test/API/lang/cpp/accelerator-table/f.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/g.cpp b/lldb/test/API/lang/cpp/accelerator-table/g.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/g.cpp
rename to lldb/test/API/lang/cpp/accelerator-table/g.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/main.cpp b/lldb/test/API/lang/cpp/accelerator-table/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/main.cpp
rename to lldb/test/API/lang/cpp/accelerator-table/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/source.h b/lldb/test/API/lang/cpp/accelerator-table/source.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/accelerator-table/source.h
rename to lldb/test/API/lang/cpp/accelerator-table/source.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/auto/Makefile b/lldb/test/API/lang/cpp/auto/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/auto/Makefile
rename to lldb/test/API/lang/cpp/auto/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/auto/TestCPPAuto.py b/lldb/test/API/lang/cpp/auto/TestCPPAuto.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/auto/TestCPPAuto.py
rename to lldb/test/API/lang/cpp/auto/TestCPPAuto.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/auto/main.cpp b/lldb/test/API/lang/cpp/auto/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/auto/main.cpp
rename to lldb/test/API/lang/cpp/auto/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/bitfields/Makefile b/lldb/test/API/lang/cpp/bitfields/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/bitfields/Makefile
rename to lldb/test/API/lang/cpp/bitfields/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/bitfields/TestCppBitfields.py b/lldb/test/API/lang/cpp/bitfields/TestCppBitfields.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/bitfields/TestCppBitfields.py
rename to lldb/test/API/lang/cpp/bitfields/TestCppBitfields.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/bitfields/main.cpp b/lldb/test/API/lang/cpp/bitfields/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/bitfields/main.cpp
rename to lldb/test/API/lang/cpp/bitfields/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/bool/Makefile b/lldb/test/API/lang/cpp/bool/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/bool/Makefile
rename to lldb/test/API/lang/cpp/bool/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/bool/TestCPPBool.py b/lldb/test/API/lang/cpp/bool/TestCPPBool.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/bool/TestCPPBool.py
rename to lldb/test/API/lang/cpp/bool/TestCPPBool.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/bool/main.cpp b/lldb/test/API/lang/cpp/bool/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/bool/main.cpp
rename to lldb/test/API/lang/cpp/bool/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/Makefile b/lldb/test/API/lang/cpp/breakpoint-commands/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/Makefile
rename to lldb/test/API/lang/cpp/breakpoint-commands/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/TestCPPBreakpointCommands.py b/lldb/test/API/lang/cpp/breakpoint-commands/TestCPPBreakpointCommands.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/TestCPPBreakpointCommands.py
rename to lldb/test/API/lang/cpp/breakpoint-commands/TestCPPBreakpointCommands.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/nested.cpp b/lldb/test/API/lang/cpp/breakpoint-commands/nested.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/nested.cpp
rename to lldb/test/API/lang/cpp/breakpoint-commands/nested.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/Makefile b/lldb/test/API/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/Makefile
rename to lldb/test/API/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/TestBreakpointInMemberFuncWNonPrimitiveParams.py b/lldb/test/API/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/TestBreakpointInMemberFuncWNonPrimitiveParams.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/TestBreakpointInMemberFuncWNonPrimitiveParams.py
rename to lldb/test/API/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/TestBreakpointInMemberFuncWNonPrimitiveParams.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/a.cpp b/lldb/test/API/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/a.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/a.cpp
rename to lldb/test/API/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/a.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/a.h b/lldb/test/API/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/a.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/a.h
rename to lldb/test/API/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/a.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/main.cpp b/lldb/test/API/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/main.cpp
rename to lldb/test/API/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/module.modulemap b/lldb/test/API/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/module.modulemap
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/module.modulemap
rename to lldb/test/API/lang/cpp/breakpoint_in_member_func_w_non_primitive_params/module.modulemap

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/call-function/Makefile b/lldb/test/API/lang/cpp/call-function/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/call-function/Makefile
rename to lldb/test/API/lang/cpp/call-function/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/call-function/TestCallCPPFunction.py b/lldb/test/API/lang/cpp/call-function/TestCallCPPFunction.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/call-function/TestCallCPPFunction.py
rename to lldb/test/API/lang/cpp/call-function/TestCallCPPFunction.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/call-function/main.cpp b/lldb/test/API/lang/cpp/call-function/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/call-function/main.cpp
rename to lldb/test/API/lang/cpp/call-function/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/chained-calls/Makefile b/lldb/test/API/lang/cpp/chained-calls/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/chained-calls/Makefile
rename to lldb/test/API/lang/cpp/chained-calls/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/chained-calls/TestCppChainedCalls.py b/lldb/test/API/lang/cpp/chained-calls/TestCppChainedCalls.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/chained-calls/TestCppChainedCalls.py
rename to lldb/test/API/lang/cpp/chained-calls/TestCppChainedCalls.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/chained-calls/main.cpp b/lldb/test/API/lang/cpp/chained-calls/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/chained-calls/main.cpp
rename to lldb/test/API/lang/cpp/chained-calls/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/.categories b/lldb/test/API/lang/cpp/char1632_t/.categories
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/.categories
rename to lldb/test/API/lang/cpp/char1632_t/.categories

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/Makefile b/lldb/test/API/lang/cpp/char1632_t/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/Makefile
rename to lldb/test/API/lang/cpp/char1632_t/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/TestChar1632T.py b/lldb/test/API/lang/cpp/char1632_t/TestChar1632T.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/TestChar1632T.py
rename to lldb/test/API/lang/cpp/char1632_t/TestChar1632T.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/main.cpp b/lldb/test/API/lang/cpp/char1632_t/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/main.cpp
rename to lldb/test/API/lang/cpp/char1632_t/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/char8_t/Makefile b/lldb/test/API/lang/cpp/char8_t/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/char8_t/Makefile
rename to lldb/test/API/lang/cpp/char8_t/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/char8_t/TestCxxChar8_t.py b/lldb/test/API/lang/cpp/char8_t/TestCxxChar8_t.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/char8_t/TestCxxChar8_t.py
rename to lldb/test/API/lang/cpp/char8_t/TestCxxChar8_t.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/char8_t/main.cpp b/lldb/test/API/lang/cpp/char8_t/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/char8_t/main.cpp
rename to lldb/test/API/lang/cpp/char8_t/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py b/lldb/test/API/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py
rename to lldb/test/API/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/main.cpp b/lldb/test/API/lang/cpp/class-template-parameter-pack/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/main.cpp
rename to lldb/test/API/lang/cpp/class-template-parameter-pack/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/class_static/Makefile b/lldb/test/API/lang/cpp/class_static/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/class_static/Makefile
rename to lldb/test/API/lang/cpp/class_static/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/class_static/TestStaticVariables.py b/lldb/test/API/lang/cpp/class_static/TestStaticVariables.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/class_static/TestStaticVariables.py
rename to lldb/test/API/lang/cpp/class_static/TestStaticVariables.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/class_static/main.cpp b/lldb/test/API/lang/cpp/class_static/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/class_static/main.cpp
rename to lldb/test/API/lang/cpp/class_static/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/Makefile b/lldb/test/API/lang/cpp/class_types/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/Makefile
rename to lldb/test/API/lang/cpp/class_types/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/TestClassTypes.py b/lldb/test/API/lang/cpp/class_types/TestClassTypes.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/TestClassTypes.py
rename to lldb/test/API/lang/cpp/class_types/TestClassTypes.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/TestClassTypesDisassembly.py b/lldb/test/API/lang/cpp/class_types/TestClassTypesDisassembly.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/TestClassTypesDisassembly.py
rename to lldb/test/API/lang/cpp/class_types/TestClassTypesDisassembly.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/cmds.txt b/lldb/test/API/lang/cpp/class_types/cmds.txt
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/cmds.txt
rename to lldb/test/API/lang/cpp/class_types/cmds.txt

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/main.cpp b/lldb/test/API/lang/cpp/class_types/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/main.cpp
rename to lldb/test/API/lang/cpp/class_types/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/const_this/TestConstThis.py b/lldb/test/API/lang/cpp/const_this/TestConstThis.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/const_this/TestConstThis.py
rename to lldb/test/API/lang/cpp/const_this/TestConstThis.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/const_this/main.cpp b/lldb/test/API/lang/cpp/const_this/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/const_this/main.cpp
rename to lldb/test/API/lang/cpp/const_this/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/constructors/Makefile b/lldb/test/API/lang/cpp/constructors/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/constructors/Makefile
rename to lldb/test/API/lang/cpp/constructors/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/constructors/TestCppConstructors.py b/lldb/test/API/lang/cpp/constructors/TestCppConstructors.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/constructors/TestCppConstructors.py
rename to lldb/test/API/lang/cpp/constructors/TestCppConstructors.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/constructors/main.cpp b/lldb/test/API/lang/cpp/constructors/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/constructors/main.cpp
rename to lldb/test/API/lang/cpp/constructors/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/covariant-return-types/Makefile b/lldb/test/API/lang/cpp/covariant-return-types/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/covariant-return-types/Makefile
rename to lldb/test/API/lang/cpp/covariant-return-types/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/covariant-return-types/TestCovariantReturnTypes.py b/lldb/test/API/lang/cpp/covariant-return-types/TestCovariantReturnTypes.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/covariant-return-types/TestCovariantReturnTypes.py
rename to lldb/test/API/lang/cpp/covariant-return-types/TestCovariantReturnTypes.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/covariant-return-types/main.cpp b/lldb/test/API/lang/cpp/covariant-return-types/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/covariant-return-types/main.cpp
rename to lldb/test/API/lang/cpp/covariant-return-types/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/diamond/Makefile b/lldb/test/API/lang/cpp/diamond/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/diamond/Makefile
rename to lldb/test/API/lang/cpp/diamond/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/diamond/TestDiamond.py b/lldb/test/API/lang/cpp/diamond/TestDiamond.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/diamond/TestDiamond.py
rename to lldb/test/API/lang/cpp/diamond/TestDiamond.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/diamond/main.cpp b/lldb/test/API/lang/cpp/diamond/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/diamond/main.cpp
rename to lldb/test/API/lang/cpp/diamond/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value-same-basename/Makefile b/lldb/test/API/lang/cpp/dynamic-value-same-basename/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value-same-basename/Makefile
rename to lldb/test/API/lang/cpp/dynamic-value-same-basename/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value-same-basename/TestDynamicValueSameBase.py b/lldb/test/API/lang/cpp/dynamic-value-same-basename/TestDynamicValueSameBase.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value-same-basename/TestDynamicValueSameBase.py
rename to lldb/test/API/lang/cpp/dynamic-value-same-basename/TestDynamicValueSameBase.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value-same-basename/main.cpp b/lldb/test/API/lang/cpp/dynamic-value-same-basename/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value-same-basename/main.cpp
rename to lldb/test/API/lang/cpp/dynamic-value-same-basename/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/Makefile b/lldb/test/API/lang/cpp/dynamic-value/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/Makefile
rename to lldb/test/API/lang/cpp/dynamic-value/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/TestCppValueCast.py b/lldb/test/API/lang/cpp/dynamic-value/TestCppValueCast.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/TestCppValueCast.py
rename to lldb/test/API/lang/cpp/dynamic-value/TestCppValueCast.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/TestDynamicValue.py b/lldb/test/API/lang/cpp/dynamic-value/TestDynamicValue.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/TestDynamicValue.py
rename to lldb/test/API/lang/cpp/dynamic-value/TestDynamicValue.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/pass-to-base.cpp b/lldb/test/API/lang/cpp/dynamic-value/pass-to-base.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/pass-to-base.cpp
rename to lldb/test/API/lang/cpp/dynamic-value/pass-to-base.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/sbvalue-cast.cpp b/lldb/test/API/lang/cpp/dynamic-value/sbvalue-cast.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/sbvalue-cast.cpp
rename to lldb/test/API/lang/cpp/dynamic-value/sbvalue-cast.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/enum_types/Makefile b/lldb/test/API/lang/cpp/enum_types/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/enum_types/Makefile
rename to lldb/test/API/lang/cpp/enum_types/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/enum_types/TestCPP11EnumTypes.py b/lldb/test/API/lang/cpp/enum_types/TestCPP11EnumTypes.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/enum_types/TestCPP11EnumTypes.py
rename to lldb/test/API/lang/cpp/enum_types/TestCPP11EnumTypes.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/enum_types/main.cpp b/lldb/test/API/lang/cpp/enum_types/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/enum_types/main.cpp
rename to lldb/test/API/lang/cpp/enum_types/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/exceptions/Makefile b/lldb/test/API/lang/cpp/exceptions/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/exceptions/Makefile
rename to lldb/test/API/lang/cpp/exceptions/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py b/lldb/test/API/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py
rename to lldb/test/API/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/exceptions/exceptions.cpp b/lldb/test/API/lang/cpp/exceptions/exceptions.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/exceptions/exceptions.cpp
rename to lldb/test/API/lang/cpp/exceptions/exceptions.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/extern_c/TestExternCSymbols.py b/lldb/test/API/lang/cpp/extern_c/TestExternCSymbols.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/extern_c/TestExternCSymbols.py
rename to lldb/test/API/lang/cpp/extern_c/TestExternCSymbols.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/extern_c/main.cpp b/lldb/test/API/lang/cpp/extern_c/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/extern_c/main.cpp
rename to lldb/test/API/lang/cpp/extern_c/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/frame-var-anon-unions/Makefile b/lldb/test/API/lang/cpp/frame-var-anon-unions/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/frame-var-anon-unions/Makefile
rename to lldb/test/API/lang/cpp/frame-var-anon-unions/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/frame-var-anon-unions/TestFrameVariableAnonymousUnions.py b/lldb/test/API/lang/cpp/frame-var-anon-unions/TestFrameVariableAnonymousUnions.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/frame-var-anon-unions/TestFrameVariableAnonymousUnions.py
rename to lldb/test/API/lang/cpp/frame-var-anon-unions/TestFrameVariableAnonymousUnions.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/frame-var-anon-unions/main.cpp b/lldb/test/API/lang/cpp/frame-var-anon-unions/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/frame-var-anon-unions/main.cpp
rename to lldb/test/API/lang/cpp/frame-var-anon-unions/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/function-qualifiers/Makefile b/lldb/test/API/lang/cpp/function-qualifiers/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/function-qualifiers/Makefile
rename to lldb/test/API/lang/cpp/function-qualifiers/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/function-qualifiers/TestCppFunctionQualifiers.py b/lldb/test/API/lang/cpp/function-qualifiers/TestCppFunctionQualifiers.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/function-qualifiers/TestCppFunctionQualifiers.py
rename to lldb/test/API/lang/cpp/function-qualifiers/TestCppFunctionQualifiers.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/function-qualifiers/main.cpp b/lldb/test/API/lang/cpp/function-qualifiers/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/function-qualifiers/main.cpp
rename to lldb/test/API/lang/cpp/function-qualifiers/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/function-template-parameter-pack/TestFunctionTemplateParameterPack.py b/lldb/test/API/lang/cpp/function-template-parameter-pack/TestFunctionTemplateParameterPack.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/function-template-parameter-pack/TestFunctionTemplateParameterPack.py
rename to lldb/test/API/lang/cpp/function-template-parameter-pack/TestFunctionTemplateParameterPack.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/function-template-parameter-pack/main.cpp b/lldb/test/API/lang/cpp/function-template-parameter-pack/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/function-template-parameter-pack/main.cpp
rename to lldb/test/API/lang/cpp/function-template-parameter-pack/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/function_refs/TestFunctionRefs.py b/lldb/test/API/lang/cpp/function_refs/TestFunctionRefs.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/function_refs/TestFunctionRefs.py
rename to lldb/test/API/lang/cpp/function_refs/TestFunctionRefs.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/function_refs/main.cpp b/lldb/test/API/lang/cpp/function_refs/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/function_refs/main.cpp
rename to lldb/test/API/lang/cpp/function_refs/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/global_operators/Makefile b/lldb/test/API/lang/cpp/global_operators/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/global_operators/Makefile
rename to lldb/test/API/lang/cpp/global_operators/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/global_operators/TestCppGlobalOperators.py b/lldb/test/API/lang/cpp/global_operators/TestCppGlobalOperators.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/global_operators/TestCppGlobalOperators.py
rename to lldb/test/API/lang/cpp/global_operators/TestCppGlobalOperators.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/global_operators/main.cpp b/lldb/test/API/lang/cpp/global_operators/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/global_operators/main.cpp
rename to lldb/test/API/lang/cpp/global_operators/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/global_variables/Makefile b/lldb/test/API/lang/cpp/global_variables/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/global_variables/Makefile
rename to lldb/test/API/lang/cpp/global_variables/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/global_variables/TestCPPGlobalVariables.py b/lldb/test/API/lang/cpp/global_variables/TestCPPGlobalVariables.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/global_variables/TestCPPGlobalVariables.py
rename to lldb/test/API/lang/cpp/global_variables/TestCPPGlobalVariables.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/global_variables/main.cpp b/lldb/test/API/lang/cpp/global_variables/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/global_variables/main.cpp
rename to lldb/test/API/lang/cpp/global_variables/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/TestGModules.py b/lldb/test/API/lang/cpp/gmodules-templates/TestGModules.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/TestGModules.py
rename to lldb/test/API/lang/cpp/gmodules-templates/TestGModules.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/a.h b/lldb/test/API/lang/cpp/gmodules-templates/a.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/a.h
rename to lldb/test/API/lang/cpp/gmodules-templates/a.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/b.h b/lldb/test/API/lang/cpp/gmodules-templates/b.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/b.h
rename to lldb/test/API/lang/cpp/gmodules-templates/b.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/main.cpp b/lldb/test/API/lang/cpp/gmodules-templates/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/main.cpp
rename to lldb/test/API/lang/cpp/gmodules-templates/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/memory.h b/lldb/test/API/lang/cpp/gmodules-templates/memory.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/memory.h
rename to lldb/test/API/lang/cpp/gmodules-templates/memory.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/module.modulemap b/lldb/test/API/lang/cpp/gmodules-templates/module.modulemap
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/module.modulemap
rename to lldb/test/API/lang/cpp/gmodules-templates/module.modulemap

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules/Makefile b/lldb/test/API/lang/cpp/gmodules/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules/Makefile
rename to lldb/test/API/lang/cpp/gmodules/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules/TestWithModuleDebugging.py b/lldb/test/API/lang/cpp/gmodules/TestWithModuleDebugging.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules/TestWithModuleDebugging.py
rename to lldb/test/API/lang/cpp/gmodules/TestWithModuleDebugging.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules/main.cpp b/lldb/test/API/lang/cpp/gmodules/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules/main.cpp
rename to lldb/test/API/lang/cpp/gmodules/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules/pch.h b/lldb/test/API/lang/cpp/gmodules/pch.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules/pch.h
rename to lldb/test/API/lang/cpp/gmodules/pch.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/Makefile b/lldb/test/API/lang/cpp/incomplete-types/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/Makefile
rename to lldb/test/API/lang/cpp/incomplete-types/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/TestCppIncompleteTypes.py b/lldb/test/API/lang/cpp/incomplete-types/TestCppIncompleteTypes.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/TestCppIncompleteTypes.py
rename to lldb/test/API/lang/cpp/incomplete-types/TestCppIncompleteTypes.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/a.cpp b/lldb/test/API/lang/cpp/incomplete-types/a.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/a.cpp
rename to lldb/test/API/lang/cpp/incomplete-types/a.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/a.h b/lldb/test/API/lang/cpp/incomplete-types/a.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/a.h
rename to lldb/test/API/lang/cpp/incomplete-types/a.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/length.cpp b/lldb/test/API/lang/cpp/incomplete-types/length.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/length.cpp
rename to lldb/test/API/lang/cpp/incomplete-types/length.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/length.h b/lldb/test/API/lang/cpp/incomplete-types/length.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/length.h
rename to lldb/test/API/lang/cpp/incomplete-types/length.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/main.cpp b/lldb/test/API/lang/cpp/incomplete-types/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/main.cpp
rename to lldb/test/API/lang/cpp/incomplete-types/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/inlines/Makefile b/lldb/test/API/lang/cpp/inlines/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/inlines/Makefile
rename to lldb/test/API/lang/cpp/inlines/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/inlines/TestInlines.py b/lldb/test/API/lang/cpp/inlines/TestInlines.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/inlines/TestInlines.py
rename to lldb/test/API/lang/cpp/inlines/TestInlines.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/inlines/inlines.cpp b/lldb/test/API/lang/cpp/inlines/inlines.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/inlines/inlines.cpp
rename to lldb/test/API/lang/cpp/inlines/inlines.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/inlines/inlines.h b/lldb/test/API/lang/cpp/inlines/inlines.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/inlines/inlines.h
rename to lldb/test/API/lang/cpp/inlines/inlines.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/lambdas/TestLambdas.py b/lldb/test/API/lang/cpp/lambdas/TestLambdas.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/lambdas/TestLambdas.py
rename to lldb/test/API/lang/cpp/lambdas/TestLambdas.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/lambdas/main.cpp b/lldb/test/API/lang/cpp/lambdas/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/lambdas/main.cpp
rename to lldb/test/API/lang/cpp/lambdas/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/Makefile b/lldb/test/API/lang/cpp/limit-debug-info/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/Makefile
rename to lldb/test/API/lang/cpp/limit-debug-info/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/TestWithLimitDebugInfo.py b/lldb/test/API/lang/cpp/limit-debug-info/TestWithLimitDebugInfo.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/TestWithLimitDebugInfo.py
rename to lldb/test/API/lang/cpp/limit-debug-info/TestWithLimitDebugInfo.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/base.cpp b/lldb/test/API/lang/cpp/limit-debug-info/base.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/base.cpp
rename to lldb/test/API/lang/cpp/limit-debug-info/base.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/base.h b/lldb/test/API/lang/cpp/limit-debug-info/base.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/base.h
rename to lldb/test/API/lang/cpp/limit-debug-info/base.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/derived.cpp b/lldb/test/API/lang/cpp/limit-debug-info/derived.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/derived.cpp
rename to lldb/test/API/lang/cpp/limit-debug-info/derived.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/derived.h b/lldb/test/API/lang/cpp/limit-debug-info/derived.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/derived.h
rename to lldb/test/API/lang/cpp/limit-debug-info/derived.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/main.cpp b/lldb/test/API/lang/cpp/limit-debug-info/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/main.cpp
rename to lldb/test/API/lang/cpp/limit-debug-info/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/llvm-style/TestLLVMStyle.py b/lldb/test/API/lang/cpp/llvm-style/TestLLVMStyle.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/llvm-style/TestLLVMStyle.py
rename to lldb/test/API/lang/cpp/llvm-style/TestLLVMStyle.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/llvm-style/main.cpp b/lldb/test/API/lang/cpp/llvm-style/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/llvm-style/main.cpp
rename to lldb/test/API/lang/cpp/llvm-style/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/member-and-local-vars-with-same-name/Makefile b/lldb/test/API/lang/cpp/member-and-local-vars-with-same-name/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/member-and-local-vars-with-same-name/Makefile
rename to lldb/test/API/lang/cpp/member-and-local-vars-with-same-name/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/member-and-local-vars-with-same-name/TestMembersAndLocalsWithSameName.py b/lldb/test/API/lang/cpp/member-and-local-vars-with-same-name/TestMembersAndLocalsWithSameName.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/member-and-local-vars-with-same-name/TestMembersAndLocalsWithSameName.py
rename to lldb/test/API/lang/cpp/member-and-local-vars-with-same-name/TestMembersAndLocalsWithSameName.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/member-and-local-vars-with-same-name/main.cpp b/lldb/test/API/lang/cpp/member-and-local-vars-with-same-name/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/member-and-local-vars-with-same-name/main.cpp
rename to lldb/test/API/lang/cpp/member-and-local-vars-with-same-name/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/modules-import/Inputs/Bar.h b/lldb/test/API/lang/cpp/modules-import/Inputs/Bar.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/modules-import/Inputs/Bar.h
rename to lldb/test/API/lang/cpp/modules-import/Inputs/Bar.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/modules-import/Inputs/Foo.h b/lldb/test/API/lang/cpp/modules-import/Inputs/Foo.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/modules-import/Inputs/Foo.h
rename to lldb/test/API/lang/cpp/modules-import/Inputs/Foo.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/modules-import/Inputs/module.modulemap b/lldb/test/API/lang/cpp/modules-import/Inputs/module.modulemap
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/modules-import/Inputs/module.modulemap
rename to lldb/test/API/lang/cpp/modules-import/Inputs/module.modulemap

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/modules-import/Makefile b/lldb/test/API/lang/cpp/modules-import/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/modules-import/Makefile
rename to lldb/test/API/lang/cpp/modules-import/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/modules-import/TestCXXModulesImport.py b/lldb/test/API/lang/cpp/modules-import/TestCXXModulesImport.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/modules-import/TestCXXModulesImport.py
rename to lldb/test/API/lang/cpp/modules-import/TestCXXModulesImport.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/modules-import/main.cpp b/lldb/test/API/lang/cpp/modules-import/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/modules-import/main.cpp
rename to lldb/test/API/lang/cpp/modules-import/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/multiple-inheritance/Makefile b/lldb/test/API/lang/cpp/multiple-inheritance/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/multiple-inheritance/Makefile
rename to lldb/test/API/lang/cpp/multiple-inheritance/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/multiple-inheritance/TestCppMultipleInheritance.py b/lldb/test/API/lang/cpp/multiple-inheritance/TestCppMultipleInheritance.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/multiple-inheritance/TestCppMultipleInheritance.py
rename to lldb/test/API/lang/cpp/multiple-inheritance/TestCppMultipleInheritance.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/multiple-inheritance/main.cpp b/lldb/test/API/lang/cpp/multiple-inheritance/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/multiple-inheritance/main.cpp
rename to lldb/test/API/lang/cpp/multiple-inheritance/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/Makefile b/lldb/test/API/lang/cpp/namespace/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/Makefile
rename to lldb/test/API/lang/cpp/namespace/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespace.py b/lldb/test/API/lang/cpp/namespace/TestNamespace.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespace.py
rename to lldb/test/API/lang/cpp/namespace/TestNamespace.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py b/lldb/test/API/lang/cpp/namespace/TestNamespaceLookup.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py
rename to lldb/test/API/lang/cpp/namespace/TestNamespaceLookup.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/cmds.txt b/lldb/test/API/lang/cpp/namespace/cmds.txt
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/cmds.txt
rename to lldb/test/API/lang/cpp/namespace/cmds.txt

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/main.cpp b/lldb/test/API/lang/cpp/namespace/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/main.cpp
rename to lldb/test/API/lang/cpp/namespace/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/ns.cpp b/lldb/test/API/lang/cpp/namespace/ns.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/ns.cpp
rename to lldb/test/API/lang/cpp/namespace/ns.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/ns.h b/lldb/test/API/lang/cpp/namespace/ns.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/ns.h
rename to lldb/test/API/lang/cpp/namespace/ns.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/ns2.cpp b/lldb/test/API/lang/cpp/namespace/ns2.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/ns2.cpp
rename to lldb/test/API/lang/cpp/namespace/ns2.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/ns3.cpp b/lldb/test/API/lang/cpp/namespace/ns3.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/ns3.cpp
rename to lldb/test/API/lang/cpp/namespace/ns3.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_conflicts/TestNamespaceConflicts.py b/lldb/test/API/lang/cpp/namespace_conflicts/TestNamespaceConflicts.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_conflicts/TestNamespaceConflicts.py
rename to lldb/test/API/lang/cpp/namespace_conflicts/TestNamespaceConflicts.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_conflicts/main.cpp b/lldb/test/API/lang/cpp/namespace_conflicts/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_conflicts/main.cpp
rename to lldb/test/API/lang/cpp/namespace_conflicts/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/Makefile b/lldb/test/API/lang/cpp/namespace_definitions/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/Makefile
rename to lldb/test/API/lang/cpp/namespace_definitions/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/TestNamespaceDefinitions.py b/lldb/test/API/lang/cpp/namespace_definitions/TestNamespaceDefinitions.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/TestNamespaceDefinitions.py
rename to lldb/test/API/lang/cpp/namespace_definitions/TestNamespaceDefinitions.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/a.cpp b/lldb/test/API/lang/cpp/namespace_definitions/a.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/a.cpp
rename to lldb/test/API/lang/cpp/namespace_definitions/a.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/b.cpp b/lldb/test/API/lang/cpp/namespace_definitions/b.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/b.cpp
rename to lldb/test/API/lang/cpp/namespace_definitions/b.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/foo.h b/lldb/test/API/lang/cpp/namespace_definitions/foo.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/foo.h
rename to lldb/test/API/lang/cpp/namespace_definitions/foo.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/main.cpp b/lldb/test/API/lang/cpp/namespace_definitions/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/main.cpp
rename to lldb/test/API/lang/cpp/namespace_definitions/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/nested-class-other-compilation-unit/Makefile b/lldb/test/API/lang/cpp/nested-class-other-compilation-unit/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/nested-class-other-compilation-unit/Makefile
rename to lldb/test/API/lang/cpp/nested-class-other-compilation-unit/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/nested-class-other-compilation-unit/TestNestedClassWithParentInAnotherCU.py b/lldb/test/API/lang/cpp/nested-class-other-compilation-unit/TestNestedClassWithParentInAnotherCU.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/nested-class-other-compilation-unit/TestNestedClassWithParentInAnotherCU.py
rename to lldb/test/API/lang/cpp/nested-class-other-compilation-unit/TestNestedClassWithParentInAnotherCU.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/nested-class-other-compilation-unit/main.cpp b/lldb/test/API/lang/cpp/nested-class-other-compilation-unit/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/nested-class-other-compilation-unit/main.cpp
rename to lldb/test/API/lang/cpp/nested-class-other-compilation-unit/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/nested-class-other-compilation-unit/other.cpp b/lldb/test/API/lang/cpp/nested-class-other-compilation-unit/other.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/nested-class-other-compilation-unit/other.cpp
rename to lldb/test/API/lang/cpp/nested-class-other-compilation-unit/other.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/nested-class-other-compilation-unit/shared.h b/lldb/test/API/lang/cpp/nested-class-other-compilation-unit/shared.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/nested-class-other-compilation-unit/shared.h
rename to lldb/test/API/lang/cpp/nested-class-other-compilation-unit/shared.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/nsimport/Makefile b/lldb/test/API/lang/cpp/nsimport/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/nsimport/Makefile
rename to lldb/test/API/lang/cpp/nsimport/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/nsimport/TestCppNsImport.py b/lldb/test/API/lang/cpp/nsimport/TestCppNsImport.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/nsimport/TestCppNsImport.py
rename to lldb/test/API/lang/cpp/nsimport/TestCppNsImport.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/nsimport/main.cpp b/lldb/test/API/lang/cpp/nsimport/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/nsimport/main.cpp
rename to lldb/test/API/lang/cpp/nsimport/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/offsetof/TestOffsetofCpp.py b/lldb/test/API/lang/cpp/offsetof/TestOffsetofCpp.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/offsetof/TestOffsetofCpp.py
rename to lldb/test/API/lang/cpp/offsetof/TestOffsetofCpp.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/offsetof/main.cpp b/lldb/test/API/lang/cpp/offsetof/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/offsetof/main.cpp
rename to lldb/test/API/lang/cpp/offsetof/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/operator-overload/Makefile b/lldb/test/API/lang/cpp/operator-overload/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/operator-overload/Makefile
rename to lldb/test/API/lang/cpp/operator-overload/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/operator-overload/TestOperatorOverload.py b/lldb/test/API/lang/cpp/operator-overload/TestOperatorOverload.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/operator-overload/TestOperatorOverload.py
rename to lldb/test/API/lang/cpp/operator-overload/TestOperatorOverload.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/operator-overload/a.cpp b/lldb/test/API/lang/cpp/operator-overload/a.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/operator-overload/a.cpp
rename to lldb/test/API/lang/cpp/operator-overload/a.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/operator-overload/b.cpp b/lldb/test/API/lang/cpp/operator-overload/b.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/operator-overload/b.cpp
rename to lldb/test/API/lang/cpp/operator-overload/b.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/operators/TestCppOperators.py b/lldb/test/API/lang/cpp/operators/TestCppOperators.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/operators/TestCppOperators.py
rename to lldb/test/API/lang/cpp/operators/TestCppOperators.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/operators/main.cpp b/lldb/test/API/lang/cpp/operators/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/operators/main.cpp
rename to lldb/test/API/lang/cpp/operators/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/Makefile b/lldb/test/API/lang/cpp/overloaded-functions/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/Makefile
rename to lldb/test/API/lang/cpp/overloaded-functions/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/TestOverloadedFunctions.py b/lldb/test/API/lang/cpp/overloaded-functions/TestOverloadedFunctions.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/TestOverloadedFunctions.py
rename to lldb/test/API/lang/cpp/overloaded-functions/TestOverloadedFunctions.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/main.cpp b/lldb/test/API/lang/cpp/overloaded-functions/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/main.cpp
rename to lldb/test/API/lang/cpp/overloaded-functions/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/static-a.cpp b/lldb/test/API/lang/cpp/overloaded-functions/static-a.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/static-a.cpp
rename to lldb/test/API/lang/cpp/overloaded-functions/static-a.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/static-b.cpp b/lldb/test/API/lang/cpp/overloaded-functions/static-b.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/static-b.cpp
rename to lldb/test/API/lang/cpp/overloaded-functions/static-b.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/printf/TestPrintf.py b/lldb/test/API/lang/cpp/printf/TestPrintf.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/printf/TestPrintf.py
rename to lldb/test/API/lang/cpp/printf/TestPrintf.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/printf/main.cpp b/lldb/test/API/lang/cpp/printf/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/printf/main.cpp
rename to lldb/test/API/lang/cpp/printf/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/rvalue-references/Makefile b/lldb/test/API/lang/cpp/rvalue-references/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/rvalue-references/Makefile
rename to lldb/test/API/lang/cpp/rvalue-references/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/rvalue-references/TestRvalueReferences.py b/lldb/test/API/lang/cpp/rvalue-references/TestRvalueReferences.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/rvalue-references/TestRvalueReferences.py
rename to lldb/test/API/lang/cpp/rvalue-references/TestRvalueReferences.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/rvalue-references/main.cpp b/lldb/test/API/lang/cpp/rvalue-references/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/rvalue-references/main.cpp
rename to lldb/test/API/lang/cpp/rvalue-references/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/scope/Makefile b/lldb/test/API/lang/cpp/scope/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/scope/Makefile
rename to lldb/test/API/lang/cpp/scope/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/scope/TestCppScope.py b/lldb/test/API/lang/cpp/scope/TestCppScope.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/scope/TestCppScope.py
rename to lldb/test/API/lang/cpp/scope/TestCppScope.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/scope/main.cpp b/lldb/test/API/lang/cpp/scope/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/scope/main.cpp
rename to lldb/test/API/lang/cpp/scope/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/signed_types/Makefile b/lldb/test/API/lang/cpp/signed_types/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/signed_types/Makefile
rename to lldb/test/API/lang/cpp/signed_types/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/signed_types/TestSignedTypes.py b/lldb/test/API/lang/cpp/signed_types/TestSignedTypes.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/signed_types/TestSignedTypes.py
rename to lldb/test/API/lang/cpp/signed_types/TestSignedTypes.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/signed_types/main.cpp b/lldb/test/API/lang/cpp/signed_types/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/signed_types/main.cpp
rename to lldb/test/API/lang/cpp/signed_types/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/static_members/Makefile b/lldb/test/API/lang/cpp/static_members/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/static_members/Makefile
rename to lldb/test/API/lang/cpp/static_members/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/static_members/TestCPPStaticMembers.py b/lldb/test/API/lang/cpp/static_members/TestCPPStaticMembers.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/static_members/TestCPPStaticMembers.py
rename to lldb/test/API/lang/cpp/static_members/TestCPPStaticMembers.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/static_members/main.cpp b/lldb/test/API/lang/cpp/static_members/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/static_members/main.cpp
rename to lldb/test/API/lang/cpp/static_members/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/static_methods/Makefile b/lldb/test/API/lang/cpp/static_methods/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/static_methods/Makefile
rename to lldb/test/API/lang/cpp/static_methods/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/static_methods/TestCPPStaticMethods.py b/lldb/test/API/lang/cpp/static_methods/TestCPPStaticMethods.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/static_methods/TestCPPStaticMethods.py
rename to lldb/test/API/lang/cpp/static_methods/TestCPPStaticMethods.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/static_methods/main.cpp b/lldb/test/API/lang/cpp/static_methods/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/static_methods/main.cpp
rename to lldb/test/API/lang/cpp/static_methods/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/std-function-step-into-callable/Makefile b/lldb/test/API/lang/cpp/std-function-step-into-callable/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/std-function-step-into-callable/Makefile
rename to lldb/test/API/lang/cpp/std-function-step-into-callable/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/std-function-step-into-callable/TestStdFunctionStepIntoCallable.py b/lldb/test/API/lang/cpp/std-function-step-into-callable/TestStdFunctionStepIntoCallable.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/std-function-step-into-callable/TestStdFunctionStepIntoCallable.py
rename to lldb/test/API/lang/cpp/std-function-step-into-callable/TestStdFunctionStepIntoCallable.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/std-function-step-into-callable/main.cpp b/lldb/test/API/lang/cpp/std-function-step-into-callable/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/std-function-step-into-callable/main.cpp
rename to lldb/test/API/lang/cpp/std-function-step-into-callable/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/stl/Makefile b/lldb/test/API/lang/cpp/stl/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/stl/Makefile
rename to lldb/test/API/lang/cpp/stl/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/stl/TestSTL.py b/lldb/test/API/lang/cpp/stl/TestSTL.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/stl/TestSTL.py
rename to lldb/test/API/lang/cpp/stl/TestSTL.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/stl/TestStdCXXDisassembly.py b/lldb/test/API/lang/cpp/stl/TestStdCXXDisassembly.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/stl/TestStdCXXDisassembly.py
rename to lldb/test/API/lang/cpp/stl/TestStdCXXDisassembly.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/stl/cmds.txt b/lldb/test/API/lang/cpp/stl/cmds.txt
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/stl/cmds.txt
rename to lldb/test/API/lang/cpp/stl/cmds.txt

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/stl/main.cpp b/lldb/test/API/lang/cpp/stl/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/stl/main.cpp
rename to lldb/test/API/lang/cpp/stl/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/symbols/TestSymbols.py b/lldb/test/API/lang/cpp/symbols/TestSymbols.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/symbols/TestSymbols.py
rename to lldb/test/API/lang/cpp/symbols/TestSymbols.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/symbols/main.cpp b/lldb/test/API/lang/cpp/symbols/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/symbols/main.cpp
rename to lldb/test/API/lang/cpp/symbols/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/template-function/Makefile b/lldb/test/API/lang/cpp/template-function/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/template-function/Makefile
rename to lldb/test/API/lang/cpp/template-function/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/template-function/TestTemplateFunctions.py b/lldb/test/API/lang/cpp/template-function/TestTemplateFunctions.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/template-function/TestTemplateFunctions.py
rename to lldb/test/API/lang/cpp/template-function/TestTemplateFunctions.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/template-function/main.cpp b/lldb/test/API/lang/cpp/template-function/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/template-function/main.cpp
rename to lldb/test/API/lang/cpp/template-function/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/template/Makefile b/lldb/test/API/lang/cpp/template/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/template/Makefile
rename to lldb/test/API/lang/cpp/template/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/template/TestTemplateArgs.py b/lldb/test/API/lang/cpp/template/TestTemplateArgs.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/template/TestTemplateArgs.py
rename to lldb/test/API/lang/cpp/template/TestTemplateArgs.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/template/main.cpp b/lldb/test/API/lang/cpp/template/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/template/main.cpp
rename to lldb/test/API/lang/cpp/template/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/this/Makefile b/lldb/test/API/lang/cpp/this/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/this/Makefile
rename to lldb/test/API/lang/cpp/this/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/this/TestCPPThis.py b/lldb/test/API/lang/cpp/this/TestCPPThis.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/this/TestCPPThis.py
rename to lldb/test/API/lang/cpp/this/TestCPPThis.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/this/main.cpp b/lldb/test/API/lang/cpp/this/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/this/main.cpp
rename to lldb/test/API/lang/cpp/this/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/thread_local/Makefile b/lldb/test/API/lang/cpp/thread_local/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/thread_local/Makefile
rename to lldb/test/API/lang/cpp/thread_local/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/thread_local/TestThreadLocal.py b/lldb/test/API/lang/cpp/thread_local/TestThreadLocal.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/thread_local/TestThreadLocal.py
rename to lldb/test/API/lang/cpp/thread_local/TestThreadLocal.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/thread_local/main.cpp b/lldb/test/API/lang/cpp/thread_local/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/thread_local/main.cpp
rename to lldb/test/API/lang/cpp/thread_local/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/Makefile b/lldb/test/API/lang/cpp/trivial_abi/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/Makefile
rename to lldb/test/API/lang/cpp/trivial_abi/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/TestTrivialABI.py b/lldb/test/API/lang/cpp/trivial_abi/TestTrivialABI.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/TestTrivialABI.py
rename to lldb/test/API/lang/cpp/trivial_abi/TestTrivialABI.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/main.cpp b/lldb/test/API/lang/cpp/trivial_abi/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/main.cpp
rename to lldb/test/API/lang/cpp/trivial_abi/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/type_lookup/Makefile b/lldb/test/API/lang/cpp/type_lookup/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/type_lookup/Makefile
rename to lldb/test/API/lang/cpp/type_lookup/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/type_lookup/TestCppTypeLookup.py b/lldb/test/API/lang/cpp/type_lookup/TestCppTypeLookup.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/type_lookup/TestCppTypeLookup.py
rename to lldb/test/API/lang/cpp/type_lookup/TestCppTypeLookup.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/type_lookup/main.cpp b/lldb/test/API/lang/cpp/type_lookup/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/type_lookup/main.cpp
rename to lldb/test/API/lang/cpp/type_lookup/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/Makefile b/lldb/test/API/lang/cpp/unicode-literals/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/Makefile
rename to lldb/test/API/lang/cpp/unicode-literals/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/TestUnicodeLiterals.py b/lldb/test/API/lang/cpp/unicode-literals/TestUnicodeLiterals.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/TestUnicodeLiterals.py
rename to lldb/test/API/lang/cpp/unicode-literals/TestUnicodeLiterals.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/main.cpp b/lldb/test/API/lang/cpp/unicode-literals/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/main.cpp
rename to lldb/test/API/lang/cpp/unicode-literals/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/unique-types/Makefile b/lldb/test/API/lang/cpp/unique-types/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/unique-types/Makefile
rename to lldb/test/API/lang/cpp/unique-types/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/unique-types/TestUniqueTypes.py b/lldb/test/API/lang/cpp/unique-types/TestUniqueTypes.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/unique-types/TestUniqueTypes.py
rename to lldb/test/API/lang/cpp/unique-types/TestUniqueTypes.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/unique-types/main.cpp b/lldb/test/API/lang/cpp/unique-types/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/unique-types/main.cpp
rename to lldb/test/API/lang/cpp/unique-types/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/Makefile b/lldb/test/API/lang/cpp/unsigned_types/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/Makefile
rename to lldb/test/API/lang/cpp/unsigned_types/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/TestUnsignedTypes.py b/lldb/test/API/lang/cpp/unsigned_types/TestUnsignedTypes.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/TestUnsignedTypes.py
rename to lldb/test/API/lang/cpp/unsigned_types/TestUnsignedTypes.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/main.cpp b/lldb/test/API/lang/cpp/unsigned_types/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/main.cpp
rename to lldb/test/API/lang/cpp/unsigned_types/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/virtual-functions/Makefile b/lldb/test/API/lang/cpp/virtual-functions/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/virtual-functions/Makefile
rename to lldb/test/API/lang/cpp/virtual-functions/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/virtual-functions/TestCppVirtualFunctions.py b/lldb/test/API/lang/cpp/virtual-functions/TestCppVirtualFunctions.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/virtual-functions/TestCppVirtualFunctions.py
rename to lldb/test/API/lang/cpp/virtual-functions/TestCppVirtualFunctions.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/virtual-functions/main.cpp b/lldb/test/API/lang/cpp/virtual-functions/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/virtual-functions/main.cpp
rename to lldb/test/API/lang/cpp/virtual-functions/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/virtual-overload/TestVirtualOverload.py b/lldb/test/API/lang/cpp/virtual-overload/TestVirtualOverload.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/virtual-overload/TestVirtualOverload.py
rename to lldb/test/API/lang/cpp/virtual-overload/TestVirtualOverload.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/virtual-overload/main.cpp b/lldb/test/API/lang/cpp/virtual-overload/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/virtual-overload/main.cpp
rename to lldb/test/API/lang/cpp/virtual-overload/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/wchar_t/.categories b/lldb/test/API/lang/cpp/wchar_t/.categories
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/wchar_t/.categories
rename to lldb/test/API/lang/cpp/wchar_t/.categories

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/wchar_t/Makefile b/lldb/test/API/lang/cpp/wchar_t/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/wchar_t/Makefile
rename to lldb/test/API/lang/cpp/wchar_t/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/wchar_t/TestCxxWCharT.py b/lldb/test/API/lang/cpp/wchar_t/TestCxxWCharT.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/wchar_t/TestCxxWCharT.py
rename to lldb/test/API/lang/cpp/wchar_t/TestCxxWCharT.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/wchar_t/main.cpp b/lldb/test/API/lang/cpp/wchar_t/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/cpp/wchar_t/main.cpp
rename to lldb/test/API/lang/cpp/wchar_t/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/mixed/Makefile b/lldb/test/API/lang/mixed/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/mixed/Makefile
rename to lldb/test/API/lang/mixed/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/mixed/TestMixedLanguages.py b/lldb/test/API/lang/mixed/TestMixedLanguages.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/mixed/TestMixedLanguages.py
rename to lldb/test/API/lang/mixed/TestMixedLanguages.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/mixed/foo.cpp b/lldb/test/API/lang/mixed/foo.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/mixed/foo.cpp
rename to lldb/test/API/lang/mixed/foo.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/mixed/main.c b/lldb/test/API/lang/mixed/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/mixed/main.c
rename to lldb/test/API/lang/mixed/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/.categories b/lldb/test/API/lang/objc/.categories
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/.categories
rename to lldb/test/API/lang/objc/.categories

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/bitfield_ivars/TestBitfieldIvars.py b/lldb/test/API/lang/objc/bitfield_ivars/TestBitfieldIvars.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/bitfield_ivars/TestBitfieldIvars.py
rename to lldb/test/API/lang/objc/bitfield_ivars/TestBitfieldIvars.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/bitfield_ivars/main.m b/lldb/test/API/lang/objc/bitfield_ivars/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/bitfield_ivars/main.m
rename to lldb/test/API/lang/objc/bitfield_ivars/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/blocks/Makefile b/lldb/test/API/lang/objc/blocks/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/blocks/Makefile
rename to lldb/test/API/lang/objc/blocks/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/blocks/TestObjCIvarsInBlocks.py b/lldb/test/API/lang/objc/blocks/TestObjCIvarsInBlocks.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/blocks/TestObjCIvarsInBlocks.py
rename to lldb/test/API/lang/objc/blocks/TestObjCIvarsInBlocks.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/blocks/ivars-in-blocks.h b/lldb/test/API/lang/objc/blocks/ivars-in-blocks.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/blocks/ivars-in-blocks.h
rename to lldb/test/API/lang/objc/blocks/ivars-in-blocks.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/blocks/ivars-in-blocks.m b/lldb/test/API/lang/objc/blocks/ivars-in-blocks.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/blocks/ivars-in-blocks.m
rename to lldb/test/API/lang/objc/blocks/ivars-in-blocks.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/blocks/main.m b/lldb/test/API/lang/objc/blocks/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/blocks/main.m
rename to lldb/test/API/lang/objc/blocks/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Makefile b/lldb/test/API/lang/objc/conflicting-definition/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Makefile
rename to lldb/test/API/lang/objc/conflicting-definition/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Test/Foo.h b/lldb/test/API/lang/objc/conflicting-definition/Test/Foo.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Test/Foo.h
rename to lldb/test/API/lang/objc/conflicting-definition/Test/Foo.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Test/Test.h b/lldb/test/API/lang/objc/conflicting-definition/Test/Test.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Test/Test.h
rename to lldb/test/API/lang/objc/conflicting-definition/Test/Test.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Test/Test.m b/lldb/test/API/lang/objc/conflicting-definition/Test/Test.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Test/Test.m
rename to lldb/test/API/lang/objc/conflicting-definition/Test/Test.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestConflictingDefinition.py b/lldb/test/API/lang/objc/conflicting-definition/TestConflictingDefinition.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestConflictingDefinition.py
rename to lldb/test/API/lang/objc/conflicting-definition/TestConflictingDefinition.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestExt/Foo.h b/lldb/test/API/lang/objc/conflicting-definition/TestExt/Foo.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestExt/Foo.h
rename to lldb/test/API/lang/objc/conflicting-definition/TestExt/Foo.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestExt/TestExt.h b/lldb/test/API/lang/objc/conflicting-definition/TestExt/TestExt.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestExt/TestExt.h
rename to lldb/test/API/lang/objc/conflicting-definition/TestExt/TestExt.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestExt/TestExt.m b/lldb/test/API/lang/objc/conflicting-definition/TestExt/TestExt.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestExt/TestExt.m
rename to lldb/test/API/lang/objc/conflicting-definition/TestExt/TestExt.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/main.m b/lldb/test/API/lang/objc/conflicting-definition/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/main.m
rename to lldb/test/API/lang/objc/conflicting-definition/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/direct-dispatch-step/Makefile b/lldb/test/API/lang/objc/direct-dispatch-step/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/direct-dispatch-step/Makefile
rename to lldb/test/API/lang/objc/direct-dispatch-step/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/direct-dispatch-step/TestObjCDirectDispatchStepping.py b/lldb/test/API/lang/objc/direct-dispatch-step/TestObjCDirectDispatchStepping.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/direct-dispatch-step/TestObjCDirectDispatchStepping.py
rename to lldb/test/API/lang/objc/direct-dispatch-step/TestObjCDirectDispatchStepping.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/direct-dispatch-step/stepping-tests.m b/lldb/test/API/lang/objc/direct-dispatch-step/stepping-tests.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/direct-dispatch-step/stepping-tests.m
rename to lldb/test/API/lang/objc/direct-dispatch-step/stepping-tests.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/exceptions/Makefile b/lldb/test/API/lang/objc/exceptions/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/exceptions/Makefile
rename to lldb/test/API/lang/objc/exceptions/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/exceptions/TestObjCExceptions.py b/lldb/test/API/lang/objc/exceptions/TestObjCExceptions.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/exceptions/TestObjCExceptions.py
rename to lldb/test/API/lang/objc/exceptions/TestObjCExceptions.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/exceptions/main.mm b/lldb/test/API/lang/objc/exceptions/main.mm
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/exceptions/main.mm
rename to lldb/test/API/lang/objc/exceptions/main.mm

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/Container.h b/lldb/test/API/lang/objc/forward-decl/Container.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/Container.h
rename to lldb/test/API/lang/objc/forward-decl/Container.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/Container.m b/lldb/test/API/lang/objc/forward-decl/Container.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/Container.m
rename to lldb/test/API/lang/objc/forward-decl/Container.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/Makefile b/lldb/test/API/lang/objc/forward-decl/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/Makefile
rename to lldb/test/API/lang/objc/forward-decl/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/TestForwardDecl.py b/lldb/test/API/lang/objc/forward-decl/TestForwardDecl.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/TestForwardDecl.py
rename to lldb/test/API/lang/objc/forward-decl/TestForwardDecl.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/main.m b/lldb/test/API/lang/objc/forward-decl/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/main.m
rename to lldb/test/API/lang/objc/forward-decl/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/Makefile b/lldb/test/API/lang/objc/foundation/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/foundation/Makefile
rename to lldb/test/API/lang/objc/foundation/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestConstStrings.py b/lldb/test/API/lang/objc/foundation/TestConstStrings.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestConstStrings.py
rename to lldb/test/API/lang/objc/foundation/TestConstStrings.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestFoundationDisassembly.py b/lldb/test/API/lang/objc/foundation/TestFoundationDisassembly.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestFoundationDisassembly.py
rename to lldb/test/API/lang/objc/foundation/TestFoundationDisassembly.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods.py b/lldb/test/API/lang/objc/foundation/TestObjCMethods.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods.py
rename to lldb/test/API/lang/objc/foundation/TestObjCMethods.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods2.py b/lldb/test/API/lang/objc/foundation/TestObjCMethods2.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods2.py
rename to lldb/test/API/lang/objc/foundation/TestObjCMethods2.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethodsNSArray.py b/lldb/test/API/lang/objc/foundation/TestObjCMethodsNSArray.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethodsNSArray.py
rename to lldb/test/API/lang/objc/foundation/TestObjCMethodsNSArray.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethodsNSError.py b/lldb/test/API/lang/objc/foundation/TestObjCMethodsNSError.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethodsNSError.py
rename to lldb/test/API/lang/objc/foundation/TestObjCMethodsNSError.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethodsString.py b/lldb/test/API/lang/objc/foundation/TestObjCMethodsString.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethodsString.py
rename to lldb/test/API/lang/objc/foundation/TestObjCMethodsString.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjectDescriptionAPI.py b/lldb/test/API/lang/objc/foundation/TestObjectDescriptionAPI.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjectDescriptionAPI.py
rename to lldb/test/API/lang/objc/foundation/TestObjectDescriptionAPI.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestRuntimeTypes.py b/lldb/test/API/lang/objc/foundation/TestRuntimeTypes.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestRuntimeTypes.py
rename to lldb/test/API/lang/objc/foundation/TestRuntimeTypes.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestSymbolTable.py b/lldb/test/API/lang/objc/foundation/TestSymbolTable.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestSymbolTable.py
rename to lldb/test/API/lang/objc/foundation/TestSymbolTable.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/const-strings.m b/lldb/test/API/lang/objc/foundation/const-strings.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/foundation/const-strings.m
rename to lldb/test/API/lang/objc/foundation/const-strings.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/main.m b/lldb/test/API/lang/objc/foundation/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/foundation/main.m
rename to lldb/test/API/lang/objc/foundation/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/my-base.h b/lldb/test/API/lang/objc/foundation/my-base.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/foundation/my-base.h
rename to lldb/test/API/lang/objc/foundation/my-base.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/my-base.m b/lldb/test/API/lang/objc/foundation/my-base.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/foundation/my-base.m
rename to lldb/test/API/lang/objc/foundation/my-base.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/global_ptrs/Makefile b/lldb/test/API/lang/objc/global_ptrs/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/global_ptrs/Makefile
rename to lldb/test/API/lang/objc/global_ptrs/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/global_ptrs/TestGlobalObjects.py b/lldb/test/API/lang/objc/global_ptrs/TestGlobalObjects.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/global_ptrs/TestGlobalObjects.py
rename to lldb/test/API/lang/objc/global_ptrs/TestGlobalObjects.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/global_ptrs/main.m b/lldb/test/API/lang/objc/global_ptrs/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/global_ptrs/main.m
rename to lldb/test/API/lang/objc/global_ptrs/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/InternalDefiner.h b/lldb/test/API/lang/objc/hidden-ivars/InternalDefiner.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/InternalDefiner.h
rename to lldb/test/API/lang/objc/hidden-ivars/InternalDefiner.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/InternalDefiner.m b/lldb/test/API/lang/objc/hidden-ivars/InternalDefiner.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/InternalDefiner.m
rename to lldb/test/API/lang/objc/hidden-ivars/InternalDefiner.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/Makefile b/lldb/test/API/lang/objc/hidden-ivars/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/Makefile
rename to lldb/test/API/lang/objc/hidden-ivars/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/TestHiddenIvars.py b/lldb/test/API/lang/objc/hidden-ivars/TestHiddenIvars.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/TestHiddenIvars.py
rename to lldb/test/API/lang/objc/hidden-ivars/TestHiddenIvars.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/main.m b/lldb/test/API/lang/objc/hidden-ivars/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/main.m
rename to lldb/test/API/lang/objc/hidden-ivars/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/Makefile b/lldb/test/API/lang/objc/ivar-IMP/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/Makefile
rename to lldb/test/API/lang/objc/ivar-IMP/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/TestObjCiVarIMP.py b/lldb/test/API/lang/objc/ivar-IMP/TestObjCiVarIMP.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/TestObjCiVarIMP.py
rename to lldb/test/API/lang/objc/ivar-IMP/TestObjCiVarIMP.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/myclass.h b/lldb/test/API/lang/objc/ivar-IMP/myclass.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/myclass.h
rename to lldb/test/API/lang/objc/ivar-IMP/myclass.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/myclass.m b/lldb/test/API/lang/objc/ivar-IMP/myclass.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/myclass.m
rename to lldb/test/API/lang/objc/ivar-IMP/myclass.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/repro.m b/lldb/test/API/lang/objc/ivar-IMP/repro.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/repro.m
rename to lldb/test/API/lang/objc/ivar-IMP/repro.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-app-update/Makefile b/lldb/test/API/lang/objc/modules-app-update/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-app-update/Makefile
rename to lldb/test/API/lang/objc/modules-app-update/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-app-update/TestClangModulesAppUpdate.py b/lldb/test/API/lang/objc/modules-app-update/TestClangModulesAppUpdate.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-app-update/TestClangModulesAppUpdate.py
rename to lldb/test/API/lang/objc/modules-app-update/TestClangModulesAppUpdate.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-app-update/foo.m b/lldb/test/API/lang/objc/modules-app-update/foo.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-app-update/foo.m
rename to lldb/test/API/lang/objc/modules-app-update/foo.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-app-update/main.m b/lldb/test/API/lang/objc/modules-app-update/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-app-update/main.m
rename to lldb/test/API/lang/objc/modules-app-update/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-app-update/module.modulemap b/lldb/test/API/lang/objc/modules-app-update/module.modulemap
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-app-update/module.modulemap
rename to lldb/test/API/lang/objc/modules-app-update/module.modulemap

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-app-update/umbrella.h b/lldb/test/API/lang/objc/modules-app-update/umbrella.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-app-update/umbrella.h
rename to lldb/test/API/lang/objc/modules-app-update/umbrella.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-auto-import/Makefile b/lldb/test/API/lang/objc/modules-auto-import/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-auto-import/Makefile
rename to lldb/test/API/lang/objc/modules-auto-import/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-auto-import/TestModulesAutoImport.py b/lldb/test/API/lang/objc/modules-auto-import/TestModulesAutoImport.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-auto-import/TestModulesAutoImport.py
rename to lldb/test/API/lang/objc/modules-auto-import/TestModulesAutoImport.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-auto-import/main.m b/lldb/test/API/lang/objc/modules-auto-import/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-auto-import/main.m
rename to lldb/test/API/lang/objc/modules-auto-import/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/Makefile b/lldb/test/API/lang/objc/modules-cache/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/Makefile
rename to lldb/test/API/lang/objc/modules-cache/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/TestClangModulesCache.py b/lldb/test/API/lang/objc/modules-cache/TestClangModulesCache.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/TestClangModulesCache.py
rename to lldb/test/API/lang/objc/modules-cache/TestClangModulesCache.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/f.h b/lldb/test/API/lang/objc/modules-cache/f.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/f.h
rename to lldb/test/API/lang/objc/modules-cache/f.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/main.m b/lldb/test/API/lang/objc/modules-cache/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/main.m
rename to lldb/test/API/lang/objc/modules-cache/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/module.modulemap b/lldb/test/API/lang/objc/modules-cache/module.modulemap
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/module.modulemap
rename to lldb/test/API/lang/objc/modules-cache/module.modulemap

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-hash-mismatch/Makefile b/lldb/test/API/lang/objc/modules-hash-mismatch/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-hash-mismatch/Makefile
rename to lldb/test/API/lang/objc/modules-hash-mismatch/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-hash-mismatch/TestClangModulesHashMismatch.py b/lldb/test/API/lang/objc/modules-hash-mismatch/TestClangModulesHashMismatch.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-hash-mismatch/TestClangModulesHashMismatch.py
rename to lldb/test/API/lang/objc/modules-hash-mismatch/TestClangModulesHashMismatch.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-hash-mismatch/main.m b/lldb/test/API/lang/objc/modules-hash-mismatch/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-hash-mismatch/main.m
rename to lldb/test/API/lang/objc/modules-hash-mismatch/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-hash-mismatch/other.m b/lldb/test/API/lang/objc/modules-hash-mismatch/other.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-hash-mismatch/other.m
rename to lldb/test/API/lang/objc/modules-hash-mismatch/other.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/Makefile b/lldb/test/API/lang/objc/modules-incomplete/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/Makefile
rename to lldb/test/API/lang/objc/modules-incomplete/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/TestIncompleteModules.py b/lldb/test/API/lang/objc/modules-incomplete/TestIncompleteModules.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/TestIncompleteModules.py
rename to lldb/test/API/lang/objc/modules-incomplete/TestIncompleteModules.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/main.m b/lldb/test/API/lang/objc/modules-incomplete/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/main.m
rename to lldb/test/API/lang/objc/modules-incomplete/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/minmax.h b/lldb/test/API/lang/objc/modules-incomplete/minmax.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/minmax.h
rename to lldb/test/API/lang/objc/modules-incomplete/minmax.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/module.map b/lldb/test/API/lang/objc/modules-incomplete/module.map
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/module.map
rename to lldb/test/API/lang/objc/modules-incomplete/module.map

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/myModule.h b/lldb/test/API/lang/objc/modules-incomplete/myModule.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/myModule.h
rename to lldb/test/API/lang/objc/modules-incomplete/myModule.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/myModule.m b/lldb/test/API/lang/objc/modules-incomplete/myModule.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/myModule.m
rename to lldb/test/API/lang/objc/modules-incomplete/myModule.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/Makefile b/lldb/test/API/lang/objc/modules-inline-functions/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/Makefile
rename to lldb/test/API/lang/objc/modules-inline-functions/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/TestModulesInlineFunctions.py b/lldb/test/API/lang/objc/modules-inline-functions/TestModulesInlineFunctions.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/TestModulesInlineFunctions.py
rename to lldb/test/API/lang/objc/modules-inline-functions/TestModulesInlineFunctions.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/main.m b/lldb/test/API/lang/objc/modules-inline-functions/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/main.m
rename to lldb/test/API/lang/objc/modules-inline-functions/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/module.map b/lldb/test/API/lang/objc/modules-inline-functions/module.map
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/module.map
rename to lldb/test/API/lang/objc/modules-inline-functions/module.map

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/myModule.c b/lldb/test/API/lang/objc/modules-inline-functions/myModule.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/myModule.c
rename to lldb/test/API/lang/objc/modules-inline-functions/myModule.c

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/myModule.h b/lldb/test/API/lang/objc/modules-inline-functions/myModule.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/myModule.h
rename to lldb/test/API/lang/objc/modules-inline-functions/myModule.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-update/Makefile b/lldb/test/API/lang/objc/modules-update/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-update/Makefile
rename to lldb/test/API/lang/objc/modules-update/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-update/TestClangModulesUpdate.py b/lldb/test/API/lang/objc/modules-update/TestClangModulesUpdate.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-update/TestClangModulesUpdate.py
rename to lldb/test/API/lang/objc/modules-update/TestClangModulesUpdate.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-update/first.m b/lldb/test/API/lang/objc/modules-update/first.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-update/first.m
rename to lldb/test/API/lang/objc/modules-update/first.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-update/module.modulemap b/lldb/test/API/lang/objc/modules-update/module.modulemap
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-update/module.modulemap
rename to lldb/test/API/lang/objc/modules-update/module.modulemap

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-update/second.m b/lldb/test/API/lang/objc/modules-update/second.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-update/second.m
rename to lldb/test/API/lang/objc/modules-update/second.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-update/umbrella.h b/lldb/test/API/lang/objc/modules-update/umbrella.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules-update/umbrella.h
rename to lldb/test/API/lang/objc/modules-update/umbrella.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules/Makefile b/lldb/test/API/lang/objc/modules/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules/Makefile
rename to lldb/test/API/lang/objc/modules/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules/TestObjCModules.py b/lldb/test/API/lang/objc/modules/TestObjCModules.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules/TestObjCModules.py
rename to lldb/test/API/lang/objc/modules/TestObjCModules.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules/main.m b/lldb/test/API/lang/objc/modules/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/modules/main.m
rename to lldb/test/API/lang/objc/modules/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc++/Makefile b/lldb/test/API/lang/objc/objc++/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc++/Makefile
rename to lldb/test/API/lang/objc/objc++/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc++/TestObjCXX.py b/lldb/test/API/lang/objc/objc++/TestObjCXX.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc++/TestObjCXX.py
rename to lldb/test/API/lang/objc/objc++/TestObjCXX.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc++/main.mm b/lldb/test/API/lang/objc/objc++/main.mm
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc++/main.mm
rename to lldb/test/API/lang/objc/objc++/main.mm

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-baseclass-sbtype/Makefile b/lldb/test/API/lang/objc/objc-baseclass-sbtype/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-baseclass-sbtype/Makefile
rename to lldb/test/API/lang/objc/objc-baseclass-sbtype/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-baseclass-sbtype/TestObjCBaseClassSBType.py b/lldb/test/API/lang/objc/objc-baseclass-sbtype/TestObjCBaseClassSBType.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-baseclass-sbtype/TestObjCBaseClassSBType.py
rename to lldb/test/API/lang/objc/objc-baseclass-sbtype/TestObjCBaseClassSBType.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-baseclass-sbtype/main.m b/lldb/test/API/lang/objc/objc-baseclass-sbtype/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-baseclass-sbtype/main.m
rename to lldb/test/API/lang/objc/objc-baseclass-sbtype/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-builtin-types/Makefile b/lldb/test/API/lang/objc/objc-builtin-types/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-builtin-types/Makefile
rename to lldb/test/API/lang/objc/objc-builtin-types/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-builtin-types/TestObjCBuiltinTypes.py b/lldb/test/API/lang/objc/objc-builtin-types/TestObjCBuiltinTypes.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-builtin-types/TestObjCBuiltinTypes.py
rename to lldb/test/API/lang/objc/objc-builtin-types/TestObjCBuiltinTypes.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-builtin-types/main.cpp b/lldb/test/API/lang/objc/objc-builtin-types/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-builtin-types/main.cpp
rename to lldb/test/API/lang/objc/objc-builtin-types/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-checker/Makefile b/lldb/test/API/lang/objc/objc-checker/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-checker/Makefile
rename to lldb/test/API/lang/objc/objc-checker/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-checker/TestObjCCheckers.py b/lldb/test/API/lang/objc/objc-checker/TestObjCCheckers.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-checker/TestObjCCheckers.py
rename to lldb/test/API/lang/objc/objc-checker/TestObjCCheckers.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-checker/main.m b/lldb/test/API/lang/objc/objc-checker/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-checker/main.m
rename to lldb/test/API/lang/objc/objc-checker/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-class-method/Makefile b/lldb/test/API/lang/objc/objc-class-method/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-class-method/Makefile
rename to lldb/test/API/lang/objc/objc-class-method/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-class-method/TestObjCClassMethod.py b/lldb/test/API/lang/objc/objc-class-method/TestObjCClassMethod.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-class-method/TestObjCClassMethod.py
rename to lldb/test/API/lang/objc/objc-class-method/TestObjCClassMethod.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-class-method/class.m b/lldb/test/API/lang/objc/objc-class-method/class.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-class-method/class.m
rename to lldb/test/API/lang/objc/objc-class-method/class.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/.categories b/lldb/test/API/lang/objc/objc-dyn-sbtype/.categories
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/.categories
rename to lldb/test/API/lang/objc/objc-dyn-sbtype/.categories

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/Makefile b/lldb/test/API/lang/objc/objc-dyn-sbtype/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/Makefile
rename to lldb/test/API/lang/objc/objc-dyn-sbtype/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/TestObjCDynamicSBType.py b/lldb/test/API/lang/objc/objc-dyn-sbtype/TestObjCDynamicSBType.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/TestObjCDynamicSBType.py
rename to lldb/test/API/lang/objc/objc-dyn-sbtype/TestObjCDynamicSBType.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/main.m b/lldb/test/API/lang/objc/objc-dyn-sbtype/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/main.m
rename to lldb/test/API/lang/objc/objc-dyn-sbtype/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-dynamic-value/Makefile b/lldb/test/API/lang/objc/objc-dynamic-value/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-dynamic-value/Makefile
rename to lldb/test/API/lang/objc/objc-dynamic-value/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-dynamic-value/TestObjCDynamicValue.py b/lldb/test/API/lang/objc/objc-dynamic-value/TestObjCDynamicValue.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-dynamic-value/TestObjCDynamicValue.py
rename to lldb/test/API/lang/objc/objc-dynamic-value/TestObjCDynamicValue.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-dynamic-value/dynamic-value.m b/lldb/test/API/lang/objc/objc-dynamic-value/dynamic-value.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-dynamic-value/dynamic-value.m
rename to lldb/test/API/lang/objc/objc-dynamic-value/dynamic-value.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-foundation-dictionary-empty/TestNSDictionary0.py b/lldb/test/API/lang/objc/objc-foundation-dictionary-empty/TestNSDictionary0.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-foundation-dictionary-empty/TestNSDictionary0.py
rename to lldb/test/API/lang/objc/objc-foundation-dictionary-empty/TestNSDictionary0.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-foundation-dictionary-empty/main.m b/lldb/test/API/lang/objc/objc-foundation-dictionary-empty/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-foundation-dictionary-empty/main.m
rename to lldb/test/API/lang/objc/objc-foundation-dictionary-empty/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/Makefile b/lldb/test/API/lang/objc/objc-ivar-offsets/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/Makefile
rename to lldb/test/API/lang/objc/objc-ivar-offsets/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/TestObjCIvarOffsets.py b/lldb/test/API/lang/objc/objc-ivar-offsets/TestObjCIvarOffsets.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/TestObjCIvarOffsets.py
rename to lldb/test/API/lang/objc/objc-ivar-offsets/TestObjCIvarOffsets.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/main.m b/lldb/test/API/lang/objc/objc-ivar-offsets/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/main.m
rename to lldb/test/API/lang/objc/objc-ivar-offsets/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/objc-ivar-offsets.h b/lldb/test/API/lang/objc/objc-ivar-offsets/objc-ivar-offsets.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/objc-ivar-offsets.h
rename to lldb/test/API/lang/objc/objc-ivar-offsets/objc-ivar-offsets.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/objc-ivar-offsets.m b/lldb/test/API/lang/objc/objc-ivar-offsets/objc-ivar-offsets.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/objc-ivar-offsets.m
rename to lldb/test/API/lang/objc/objc-ivar-offsets/objc-ivar-offsets.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-protocols/TestIvarProtocols.py b/lldb/test/API/lang/objc/objc-ivar-protocols/TestIvarProtocols.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-protocols/TestIvarProtocols.py
rename to lldb/test/API/lang/objc/objc-ivar-protocols/TestIvarProtocols.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-protocols/main.m b/lldb/test/API/lang/objc/objc-ivar-protocols/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-protocols/main.m
rename to lldb/test/API/lang/objc/objc-ivar-protocols/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-stripped/Makefile b/lldb/test/API/lang/objc/objc-ivar-stripped/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-stripped/Makefile
rename to lldb/test/API/lang/objc/objc-ivar-stripped/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-stripped/TestObjCIvarStripped.py b/lldb/test/API/lang/objc/objc-ivar-stripped/TestObjCIvarStripped.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-stripped/TestObjCIvarStripped.py
rename to lldb/test/API/lang/objc/objc-ivar-stripped/TestObjCIvarStripped.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-stripped/main.m b/lldb/test/API/lang/objc/objc-ivar-stripped/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-stripped/main.m
rename to lldb/test/API/lang/objc/objc-ivar-stripped/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/Makefile b/lldb/test/API/lang/objc/objc-new-syntax/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/Makefile
rename to lldb/test/API/lang/objc/objc-new-syntax/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/ObjCNewSyntaxTest.py b/lldb/test/API/lang/objc/objc-new-syntax/ObjCNewSyntaxTest.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/ObjCNewSyntaxTest.py
rename to lldb/test/API/lang/objc/objc-new-syntax/ObjCNewSyntaxTest.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/TestObjCNewSyntaxArray.py b/lldb/test/API/lang/objc/objc-new-syntax/TestObjCNewSyntaxArray.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/TestObjCNewSyntaxArray.py
rename to lldb/test/API/lang/objc/objc-new-syntax/TestObjCNewSyntaxArray.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/TestObjCNewSyntaxDictionary.py b/lldb/test/API/lang/objc/objc-new-syntax/TestObjCNewSyntaxDictionary.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/TestObjCNewSyntaxDictionary.py
rename to lldb/test/API/lang/objc/objc-new-syntax/TestObjCNewSyntaxDictionary.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/TestObjCNewSyntaxLiteral.py b/lldb/test/API/lang/objc/objc-new-syntax/TestObjCNewSyntaxLiteral.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/TestObjCNewSyntaxLiteral.py
rename to lldb/test/API/lang/objc/objc-new-syntax/TestObjCNewSyntaxLiteral.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/main.m b/lldb/test/API/lang/objc/objc-new-syntax/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/main.m
rename to lldb/test/API/lang/objc/objc-new-syntax/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-optimized/Makefile b/lldb/test/API/lang/objc/objc-optimized/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-optimized/Makefile
rename to lldb/test/API/lang/objc/objc-optimized/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-optimized/TestObjcOptimized.py b/lldb/test/API/lang/objc/objc-optimized/TestObjcOptimized.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-optimized/TestObjcOptimized.py
rename to lldb/test/API/lang/objc/objc-optimized/TestObjcOptimized.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-optimized/main.m b/lldb/test/API/lang/objc/objc-optimized/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-optimized/main.m
rename to lldb/test/API/lang/objc/objc-optimized/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-property/Makefile b/lldb/test/API/lang/objc/objc-property/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-property/Makefile
rename to lldb/test/API/lang/objc/objc-property/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-property/TestObjCProperty.py b/lldb/test/API/lang/objc/objc-property/TestObjCProperty.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-property/TestObjCProperty.py
rename to lldb/test/API/lang/objc/objc-property/TestObjCProperty.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-property/main.m b/lldb/test/API/lang/objc/objc-property/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-property/main.m
rename to lldb/test/API/lang/objc/objc-property/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-runtime-ivars/Makefile b/lldb/test/API/lang/objc/objc-runtime-ivars/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-runtime-ivars/Makefile
rename to lldb/test/API/lang/objc/objc-runtime-ivars/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-runtime-ivars/TestRuntimeIvars.py b/lldb/test/API/lang/objc/objc-runtime-ivars/TestRuntimeIvars.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-runtime-ivars/TestRuntimeIvars.py
rename to lldb/test/API/lang/objc/objc-runtime-ivars/TestRuntimeIvars.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-runtime-ivars/main.m b/lldb/test/API/lang/objc/objc-runtime-ivars/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-runtime-ivars/main.m
rename to lldb/test/API/lang/objc/objc-runtime-ivars/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/Makefile b/lldb/test/API/lang/objc/objc-static-method-stripped/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/Makefile
rename to lldb/test/API/lang/objc/objc-static-method-stripped/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/TestObjCStaticMethodStripped.py b/lldb/test/API/lang/objc/objc-static-method-stripped/TestObjCStaticMethodStripped.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/TestObjCStaticMethodStripped.py
rename to lldb/test/API/lang/objc/objc-static-method-stripped/TestObjCStaticMethodStripped.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/static.m b/lldb/test/API/lang/objc/objc-static-method-stripped/static.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/static.m
rename to lldb/test/API/lang/objc/objc-static-method-stripped/static.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method/Makefile b/lldb/test/API/lang/objc/objc-static-method/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method/Makefile
rename to lldb/test/API/lang/objc/objc-static-method/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method/TestObjCStaticMethod.py b/lldb/test/API/lang/objc/objc-static-method/TestObjCStaticMethod.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method/TestObjCStaticMethod.py
rename to lldb/test/API/lang/objc/objc-static-method/TestObjCStaticMethod.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method/static.m b/lldb/test/API/lang/objc/objc-static-method/static.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method/static.m
rename to lldb/test/API/lang/objc/objc-static-method/static.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-stepping/Makefile b/lldb/test/API/lang/objc/objc-stepping/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-stepping/Makefile
rename to lldb/test/API/lang/objc/objc-stepping/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-stepping/TestObjCStepping.py b/lldb/test/API/lang/objc/objc-stepping/TestObjCStepping.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-stepping/TestObjCStepping.py
rename to lldb/test/API/lang/objc/objc-stepping/TestObjCStepping.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-stepping/stepping-tests.m b/lldb/test/API/lang/objc/objc-stepping/stepping-tests.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-stepping/stepping-tests.m
rename to lldb/test/API/lang/objc/objc-stepping/stepping-tests.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-argument/Makefile b/lldb/test/API/lang/objc/objc-struct-argument/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-argument/Makefile
rename to lldb/test/API/lang/objc/objc-struct-argument/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-argument/TestObjCStructArgument.py b/lldb/test/API/lang/objc/objc-struct-argument/TestObjCStructArgument.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-argument/TestObjCStructArgument.py
rename to lldb/test/API/lang/objc/objc-struct-argument/TestObjCStructArgument.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-argument/test.m b/lldb/test/API/lang/objc/objc-struct-argument/test.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-argument/test.m
rename to lldb/test/API/lang/objc/objc-struct-argument/test.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-return/Makefile b/lldb/test/API/lang/objc/objc-struct-return/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-return/Makefile
rename to lldb/test/API/lang/objc/objc-struct-return/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-return/TestObjCStructReturn.py b/lldb/test/API/lang/objc/objc-struct-return/TestObjCStructReturn.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-return/TestObjCStructReturn.py
rename to lldb/test/API/lang/objc/objc-struct-return/TestObjCStructReturn.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-return/test.m b/lldb/test/API/lang/objc/objc-struct-return/test.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-return/test.m
rename to lldb/test/API/lang/objc/objc-struct-return/test.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-super/Makefile b/lldb/test/API/lang/objc/objc-super/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-super/Makefile
rename to lldb/test/API/lang/objc/objc-super/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-super/TestObjCSuper.py b/lldb/test/API/lang/objc/objc-super/TestObjCSuper.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-super/TestObjCSuper.py
rename to lldb/test/API/lang/objc/objc-super/TestObjCSuper.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-super/class.m b/lldb/test/API/lang/objc/objc-super/class.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc-super/class.m
rename to lldb/test/API/lang/objc/objc-super/class.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc_direct-methods/Makefile b/lldb/test/API/lang/objc/objc_direct-methods/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc_direct-methods/Makefile
rename to lldb/test/API/lang/objc/objc_direct-methods/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc_direct-methods/TestObjCDirectMethods.py b/lldb/test/API/lang/objc/objc_direct-methods/TestObjCDirectMethods.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc_direct-methods/TestObjCDirectMethods.py
rename to lldb/test/API/lang/objc/objc_direct-methods/TestObjCDirectMethods.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc_direct-methods/main.m b/lldb/test/API/lang/objc/objc_direct-methods/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/objc_direct-methods/main.m
rename to lldb/test/API/lang/objc/objc_direct-methods/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/orderedset/Makefile b/lldb/test/API/lang/objc/orderedset/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/orderedset/Makefile
rename to lldb/test/API/lang/objc/orderedset/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/orderedset/TestOrderedSet.py b/lldb/test/API/lang/objc/orderedset/TestOrderedSet.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/orderedset/TestOrderedSet.py
rename to lldb/test/API/lang/objc/orderedset/TestOrderedSet.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/orderedset/main.m b/lldb/test/API/lang/objc/orderedset/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/orderedset/main.m
rename to lldb/test/API/lang/objc/orderedset/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/print-obj/Makefile b/lldb/test/API/lang/objc/print-obj/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/print-obj/Makefile
rename to lldb/test/API/lang/objc/print-obj/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/print-obj/TestPrintObj.py b/lldb/test/API/lang/objc/print-obj/TestPrintObj.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/print-obj/TestPrintObj.py
rename to lldb/test/API/lang/objc/print-obj/TestPrintObj.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/print-obj/blocked.m b/lldb/test/API/lang/objc/print-obj/blocked.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/print-obj/blocked.m
rename to lldb/test/API/lang/objc/print-obj/blocked.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/ptr_refs/Makefile b/lldb/test/API/lang/objc/ptr_refs/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/ptr_refs/Makefile
rename to lldb/test/API/lang/objc/ptr_refs/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/ptr_refs/TestPtrRefsObjC.py b/lldb/test/API/lang/objc/ptr_refs/TestPtrRefsObjC.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/ptr_refs/TestPtrRefsObjC.py
rename to lldb/test/API/lang/objc/ptr_refs/TestPtrRefsObjC.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/ptr_refs/main.m b/lldb/test/API/lang/objc/ptr_refs/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/ptr_refs/main.m
rename to lldb/test/API/lang/objc/ptr_refs/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/radar-9691614/Makefile b/lldb/test/API/lang/objc/radar-9691614/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/radar-9691614/Makefile
rename to lldb/test/API/lang/objc/radar-9691614/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/radar-9691614/TestObjCMethodReturningBOOL.py b/lldb/test/API/lang/objc/radar-9691614/TestObjCMethodReturningBOOL.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/radar-9691614/TestObjCMethodReturningBOOL.py
rename to lldb/test/API/lang/objc/radar-9691614/TestObjCMethodReturningBOOL.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/radar-9691614/main.m b/lldb/test/API/lang/objc/radar-9691614/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/radar-9691614/main.m
rename to lldb/test/API/lang/objc/radar-9691614/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-10967107/Makefile b/lldb/test/API/lang/objc/rdar-10967107/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/rdar-10967107/Makefile
rename to lldb/test/API/lang/objc/rdar-10967107/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-10967107/TestRdar10967107.py b/lldb/test/API/lang/objc/rdar-10967107/TestRdar10967107.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/rdar-10967107/TestRdar10967107.py
rename to lldb/test/API/lang/objc/rdar-10967107/TestRdar10967107.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-10967107/main.m b/lldb/test/API/lang/objc/rdar-10967107/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/rdar-10967107/main.m
rename to lldb/test/API/lang/objc/rdar-10967107/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-11355592/Makefile b/lldb/test/API/lang/objc/rdar-11355592/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/rdar-11355592/Makefile
rename to lldb/test/API/lang/objc/rdar-11355592/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-11355592/TestRdar11355592.py b/lldb/test/API/lang/objc/rdar-11355592/TestRdar11355592.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/rdar-11355592/TestRdar11355592.py
rename to lldb/test/API/lang/objc/rdar-11355592/TestRdar11355592.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-11355592/main.m b/lldb/test/API/lang/objc/rdar-11355592/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/rdar-11355592/main.m
rename to lldb/test/API/lang/objc/rdar-11355592/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/Makefile b/lldb/test/API/lang/objc/rdar-12408181/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/Makefile
rename to lldb/test/API/lang/objc/rdar-12408181/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/TestRdar12408181.py b/lldb/test/API/lang/objc/rdar-12408181/TestRdar12408181.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/TestRdar12408181.py
rename to lldb/test/API/lang/objc/rdar-12408181/TestRdar12408181.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/main.m b/lldb/test/API/lang/objc/rdar-12408181/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/main.m
rename to lldb/test/API/lang/objc/rdar-12408181/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/Bar.h b/lldb/test/API/lang/objc/real-definition/Bar.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/Bar.h
rename to lldb/test/API/lang/objc/real-definition/Bar.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/Bar.m b/lldb/test/API/lang/objc/real-definition/Bar.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/Bar.m
rename to lldb/test/API/lang/objc/real-definition/Bar.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/Foo.h b/lldb/test/API/lang/objc/real-definition/Foo.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/Foo.h
rename to lldb/test/API/lang/objc/real-definition/Foo.h

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/Foo.m b/lldb/test/API/lang/objc/real-definition/Foo.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/Foo.m
rename to lldb/test/API/lang/objc/real-definition/Foo.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/Makefile b/lldb/test/API/lang/objc/real-definition/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/Makefile
rename to lldb/test/API/lang/objc/real-definition/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/TestRealDefinition.py b/lldb/test/API/lang/objc/real-definition/TestRealDefinition.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/TestRealDefinition.py
rename to lldb/test/API/lang/objc/real-definition/TestRealDefinition.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/main.m b/lldb/test/API/lang/objc/real-definition/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/main.m
rename to lldb/test/API/lang/objc/real-definition/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/sample/Makefile b/lldb/test/API/lang/objc/sample/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/sample/Makefile
rename to lldb/test/API/lang/objc/sample/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/sample/main.m b/lldb/test/API/lang/objc/sample/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/sample/main.m
rename to lldb/test/API/lang/objc/sample/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/self/Makefile b/lldb/test/API/lang/objc/self/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/self/Makefile
rename to lldb/test/API/lang/objc/self/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/self/TestObjCSelf.py b/lldb/test/API/lang/objc/self/TestObjCSelf.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/self/TestObjCSelf.py
rename to lldb/test/API/lang/objc/self/TestObjCSelf.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/self/main.m b/lldb/test/API/lang/objc/self/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/self/main.m
rename to lldb/test/API/lang/objc/self/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/single-entry-dictionary/Makefile b/lldb/test/API/lang/objc/single-entry-dictionary/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/single-entry-dictionary/Makefile
rename to lldb/test/API/lang/objc/single-entry-dictionary/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/single-entry-dictionary/TestObjCSingleEntryDictionary.py b/lldb/test/API/lang/objc/single-entry-dictionary/TestObjCSingleEntryDictionary.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/single-entry-dictionary/TestObjCSingleEntryDictionary.py
rename to lldb/test/API/lang/objc/single-entry-dictionary/TestObjCSingleEntryDictionary.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/single-entry-dictionary/main.m b/lldb/test/API/lang/objc/single-entry-dictionary/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/single-entry-dictionary/main.m
rename to lldb/test/API/lang/objc/single-entry-dictionary/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/unicode-string/TestUnicodeString.py b/lldb/test/API/lang/objc/unicode-string/TestUnicodeString.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/unicode-string/TestUnicodeString.py
rename to lldb/test/API/lang/objc/unicode-string/TestUnicodeString.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/unicode-string/main.m b/lldb/test/API/lang/objc/unicode-string/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/unicode-string/main.m
rename to lldb/test/API/lang/objc/unicode-string/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/variadic_methods/TestVariadicMethods.py b/lldb/test/API/lang/objc/variadic_methods/TestVariadicMethods.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/variadic_methods/TestVariadicMethods.py
rename to lldb/test/API/lang/objc/variadic_methods/TestVariadicMethods.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objc/variadic_methods/main.m b/lldb/test/API/lang/objc/variadic_methods/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objc/variadic_methods/main.m
rename to lldb/test/API/lang/objc/variadic_methods/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objcxx/class-name-clash/Makefile b/lldb/test/API/lang/objcxx/class-name-clash/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objcxx/class-name-clash/Makefile
rename to lldb/test/API/lang/objcxx/class-name-clash/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objcxx/class-name-clash/TestNameClash.py b/lldb/test/API/lang/objcxx/class-name-clash/TestNameClash.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objcxx/class-name-clash/TestNameClash.py
rename to lldb/test/API/lang/objcxx/class-name-clash/TestNameClash.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objcxx/class-name-clash/main.mm b/lldb/test/API/lang/objcxx/class-name-clash/main.mm
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objcxx/class-name-clash/main.mm
rename to lldb/test/API/lang/objcxx/class-name-clash/main.mm

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objcxx/class-name-clash/myobject.mm b/lldb/test/API/lang/objcxx/class-name-clash/myobject.mm
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objcxx/class-name-clash/myobject.mm
rename to lldb/test/API/lang/objcxx/class-name-clash/myobject.mm

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objcxx/cxx-bridged-po/Makefile b/lldb/test/API/lang/objcxx/cxx-bridged-po/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objcxx/cxx-bridged-po/Makefile
rename to lldb/test/API/lang/objcxx/cxx-bridged-po/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objcxx/cxx-bridged-po/TestObjCXXBridgedPO.py b/lldb/test/API/lang/objcxx/cxx-bridged-po/TestObjCXXBridgedPO.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objcxx/cxx-bridged-po/TestObjCXXBridgedPO.py
rename to lldb/test/API/lang/objcxx/cxx-bridged-po/TestObjCXXBridgedPO.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objcxx/cxx-bridged-po/main.mm b/lldb/test/API/lang/objcxx/cxx-bridged-po/main.mm
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objcxx/cxx-bridged-po/main.mm
rename to lldb/test/API/lang/objcxx/cxx-bridged-po/main.mm

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objcxx/hide-runtime-values/Makefile b/lldb/test/API/lang/objcxx/hide-runtime-values/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objcxx/hide-runtime-values/Makefile
rename to lldb/test/API/lang/objcxx/hide-runtime-values/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objcxx/hide-runtime-values/TestObjCXXHideRuntimeValues.py b/lldb/test/API/lang/objcxx/hide-runtime-values/TestObjCXXHideRuntimeValues.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objcxx/hide-runtime-values/TestObjCXXHideRuntimeValues.py
rename to lldb/test/API/lang/objcxx/hide-runtime-values/TestObjCXXHideRuntimeValues.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objcxx/hide-runtime-values/main.mm b/lldb/test/API/lang/objcxx/hide-runtime-values/main.mm
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objcxx/hide-runtime-values/main.mm
rename to lldb/test/API/lang/objcxx/hide-runtime-values/main.mm

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objcxx/objcxx-ivar-vector/TestIvarVector.py b/lldb/test/API/lang/objcxx/objcxx-ivar-vector/TestIvarVector.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objcxx/objcxx-ivar-vector/TestIvarVector.py
rename to lldb/test/API/lang/objcxx/objcxx-ivar-vector/TestIvarVector.py

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objcxx/objcxx-ivar-vector/main.mm b/lldb/test/API/lang/objcxx/objcxx-ivar-vector/main.mm
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objcxx/objcxx-ivar-vector/main.mm
rename to lldb/test/API/lang/objcxx/objcxx-ivar-vector/main.mm

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objcxx/sample/Makefile b/lldb/test/API/lang/objcxx/sample/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objcxx/sample/Makefile
rename to lldb/test/API/lang/objcxx/sample/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/lang/objcxx/sample/main.mm b/lldb/test/API/lang/objcxx/sample/main.mm
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/lang/objcxx/sample/main.mm
rename to lldb/test/API/lang/objcxx/sample/main.mm

diff  --git a/lldb/packages/Python/lldbsuite/test/linux/add-symbols/Makefile b/lldb/test/API/linux/add-symbols/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/linux/add-symbols/Makefile
rename to lldb/test/API/linux/add-symbols/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/linux/add-symbols/TestTargetSymbolsAddCommand.py b/lldb/test/API/linux/add-symbols/TestTargetSymbolsAddCommand.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/linux/add-symbols/TestTargetSymbolsAddCommand.py
rename to lldb/test/API/linux/add-symbols/TestTargetSymbolsAddCommand.py

diff  --git a/lldb/packages/Python/lldbsuite/test/linux/add-symbols/main.c b/lldb/test/API/linux/add-symbols/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/linux/add-symbols/main.c
rename to lldb/test/API/linux/add-symbols/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/linux/builtin_trap/Makefile b/lldb/test/API/linux/builtin_trap/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/linux/builtin_trap/Makefile
rename to lldb/test/API/linux/builtin_trap/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/linux/builtin_trap/TestBuiltinTrap.py b/lldb/test/API/linux/builtin_trap/TestBuiltinTrap.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/linux/builtin_trap/TestBuiltinTrap.py
rename to lldb/test/API/linux/builtin_trap/TestBuiltinTrap.py

diff  --git a/lldb/packages/Python/lldbsuite/test/linux/builtin_trap/main.cpp b/lldb/test/API/linux/builtin_trap/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/linux/builtin_trap/main.cpp
rename to lldb/test/API/linux/builtin_trap/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/Makefile b/lldb/test/API/linux/mix-dwo-and-regular-objects/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/Makefile
rename to lldb/test/API/linux/mix-dwo-and-regular-objects/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/TestMixedDwarfBinary.py b/lldb/test/API/linux/mix-dwo-and-regular-objects/TestMixedDwarfBinary.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/TestMixedDwarfBinary.py
rename to lldb/test/API/linux/mix-dwo-and-regular-objects/TestMixedDwarfBinary.py

diff  --git a/lldb/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/a.c b/lldb/test/API/linux/mix-dwo-and-regular-objects/a.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/a.c
rename to lldb/test/API/linux/mix-dwo-and-regular-objects/a.c

diff  --git a/lldb/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/b.c b/lldb/test/API/linux/mix-dwo-and-regular-objects/b.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/b.c
rename to lldb/test/API/linux/mix-dwo-and-regular-objects/b.c

diff  --git a/lldb/packages/Python/lldbsuite/test/linux/sepdebugsymlink/Makefile b/lldb/test/API/linux/sepdebugsymlink/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/linux/sepdebugsymlink/Makefile
rename to lldb/test/API/linux/sepdebugsymlink/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/linux/sepdebugsymlink/TestTargetSymbolsSepDebugSymlink.py b/lldb/test/API/linux/sepdebugsymlink/TestTargetSymbolsSepDebugSymlink.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/linux/sepdebugsymlink/TestTargetSymbolsSepDebugSymlink.py
rename to lldb/test/API/linux/sepdebugsymlink/TestTargetSymbolsSepDebugSymlink.py

diff  --git a/lldb/packages/Python/lldbsuite/test/linux/sepdebugsymlink/main.c b/lldb/test/API/linux/sepdebugsymlink/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/linux/sepdebugsymlink/main.c
rename to lldb/test/API/linux/sepdebugsymlink/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/linux/thread/create_during_instruction_step/Makefile b/lldb/test/API/linux/thread/create_during_instruction_step/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/linux/thread/create_during_instruction_step/Makefile
rename to lldb/test/API/linux/thread/create_during_instruction_step/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/linux/thread/create_during_instruction_step/TestCreateDuringInstructionStep.py b/lldb/test/API/linux/thread/create_during_instruction_step/TestCreateDuringInstructionStep.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/linux/thread/create_during_instruction_step/TestCreateDuringInstructionStep.py
rename to lldb/test/API/linux/thread/create_during_instruction_step/TestCreateDuringInstructionStep.py

diff  --git a/lldb/packages/Python/lldbsuite/test/linux/thread/create_during_instruction_step/main.cpp b/lldb/test/API/linux/thread/create_during_instruction_step/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/linux/thread/create_during_instruction_step/main.cpp
rename to lldb/test/API/linux/thread/create_during_instruction_step/main.cpp

diff  --git a/lldb/test/API/lit.cfg.py b/lldb/test/API/lit.cfg.py
index 79401ae47d13..10df5600db4c 100644
--- a/lldb/test/API/lit.cfg.py
+++ b/lldb/test/API/lit.cfg.py
@@ -17,8 +17,7 @@
 
 # test_source_root: The root path where tests are located.
 # test_exec_root: The root path where tests should be run.
-config.test_source_root = os.path.join(config.lldb_src_root, 'packages',
-                                       'Python', 'lldbsuite', 'test')
+config.test_source_root = os.path.dirname(__file__)
 config.test_exec_root = config.test_source_root
 
 if 'Address' in config.llvm_use_sanitizer:

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/Inputs/main.c b/lldb/test/API/macosx/DBGSourcePathRemapping/Inputs/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/Inputs/main.c
rename to lldb/test/API/macosx/DBGSourcePathRemapping/Inputs/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/Inputs/relative.c b/lldb/test/API/macosx/DBGSourcePathRemapping/Inputs/relative.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/Inputs/relative.c
rename to lldb/test/API/macosx/DBGSourcePathRemapping/Inputs/relative.c

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/Makefile b/lldb/test/API/macosx/DBGSourcePathRemapping/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/Makefile
rename to lldb/test/API/macosx/DBGSourcePathRemapping/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/TestDSYMSourcePathRemapping.py b/lldb/test/API/macosx/DBGSourcePathRemapping/TestDSYMSourcePathRemapping.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/TestDSYMSourcePathRemapping.py
rename to lldb/test/API/macosx/DBGSourcePathRemapping/TestDSYMSourcePathRemapping.py

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/add-dsym/Makefile b/lldb/test/API/macosx/add-dsym/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/add-dsym/Makefile
rename to lldb/test/API/macosx/add-dsym/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/add-dsym/TestAddDsymMidExecutionCommand.py b/lldb/test/API/macosx/add-dsym/TestAddDsymMidExecutionCommand.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/add-dsym/TestAddDsymMidExecutionCommand.py
rename to lldb/test/API/macosx/add-dsym/TestAddDsymMidExecutionCommand.py

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/add-dsym/main.c b/lldb/test/API/macosx/add-dsym/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/add-dsym/main.c
rename to lldb/test/API/macosx/add-dsym/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/Makefile b/lldb/test/API/macosx/duplicate-archive-members/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/Makefile
rename to lldb/test/API/macosx/duplicate-archive-members/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/TestDuplicateMembers.py b/lldb/test/API/macosx/duplicate-archive-members/TestDuplicateMembers.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/TestDuplicateMembers.py
rename to lldb/test/API/macosx/duplicate-archive-members/TestDuplicateMembers.py

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/a.c b/lldb/test/API/macosx/duplicate-archive-members/a.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/a.c
rename to lldb/test/API/macosx/duplicate-archive-members/a.c

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/main.c b/lldb/test/API/macosx/duplicate-archive-members/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/main.c
rename to lldb/test/API/macosx/duplicate-archive-members/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/sub1/a.c b/lldb/test/API/macosx/duplicate-archive-members/sub1/a.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/sub1/a.c
rename to lldb/test/API/macosx/duplicate-archive-members/sub1/a.c

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile b/lldb/test/API/macosx/find-app-in-bundle/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile
rename to lldb/test/API/macosx/find-app-in-bundle/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/TestApp.app/Contents/Info.plist b/lldb/test/API/macosx/find-app-in-bundle/TestApp.app/Contents/Info.plist
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/TestApp.app/Contents/Info.plist
rename to lldb/test/API/macosx/find-app-in-bundle/TestApp.app/Contents/Info.plist

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/TestApp.app/Contents/MacOS/.empty b/lldb/test/API/macosx/find-app-in-bundle/TestApp.app/Contents/MacOS/.empty
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/TestApp.app/Contents/MacOS/.empty
rename to lldb/test/API/macosx/find-app-in-bundle/TestApp.app/Contents/MacOS/.empty

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/TestApp.app/Contents/Resources/.empty b/lldb/test/API/macosx/find-app-in-bundle/TestApp.app/Contents/Resources/.empty
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/TestApp.app/Contents/Resources/.empty
rename to lldb/test/API/macosx/find-app-in-bundle/TestApp.app/Contents/Resources/.empty

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/TestFindAppInBundle.py b/lldb/test/API/macosx/find-app-in-bundle/TestFindAppInBundle.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/TestFindAppInBundle.py
rename to lldb/test/API/macosx/find-app-in-bundle/TestFindAppInBundle.py

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/main.c b/lldb/test/API/macosx/find-app-in-bundle/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/main.c
rename to lldb/test/API/macosx/find-app-in-bundle/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/Makefile b/lldb/test/API/macosx/find-dsym/bundle-with-dot-in-filename/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/Makefile
rename to lldb/test/API/macosx/find-dsym/bundle-with-dot-in-filename/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/TestBundleWithDotInFilename.py b/lldb/test/API/macosx/find-dsym/bundle-with-dot-in-filename/TestBundleWithDotInFilename.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/TestBundleWithDotInFilename.py
rename to lldb/test/API/macosx/find-dsym/bundle-with-dot-in-filename/TestBundleWithDotInFilename.py

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/bundle.c b/lldb/test/API/macosx/find-dsym/bundle-with-dot-in-filename/bundle.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/bundle.c
rename to lldb/test/API/macosx/find-dsym/bundle-with-dot-in-filename/bundle.c

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/main.c b/lldb/test/API/macosx/find-dsym/bundle-with-dot-in-filename/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/main.c
rename to lldb/test/API/macosx/find-dsym/bundle-with-dot-in-filename/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/Info.plist b/lldb/test/API/macosx/find-dsym/deep-bundle/Info.plist
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/Info.plist
rename to lldb/test/API/macosx/find-dsym/deep-bundle/Info.plist

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/Makefile b/lldb/test/API/macosx/find-dsym/deep-bundle/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/Makefile
rename to lldb/test/API/macosx/find-dsym/deep-bundle/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/MyFramework.h b/lldb/test/API/macosx/find-dsym/deep-bundle/MyFramework.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/MyFramework.h
rename to lldb/test/API/macosx/find-dsym/deep-bundle/MyFramework.h

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/TestDeepBundle.py b/lldb/test/API/macosx/find-dsym/deep-bundle/TestDeepBundle.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/TestDeepBundle.py
rename to lldb/test/API/macosx/find-dsym/deep-bundle/TestDeepBundle.py

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/main.c b/lldb/test/API/macosx/find-dsym/deep-bundle/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/main.c
rename to lldb/test/API/macosx/find-dsym/deep-bundle/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/myframework.c b/lldb/test/API/macosx/find-dsym/deep-bundle/myframework.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/myframework.c
rename to lldb/test/API/macosx/find-dsym/deep-bundle/myframework.c

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/function-starts/Makefile b/lldb/test/API/macosx/function-starts/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/function-starts/Makefile
rename to lldb/test/API/macosx/function-starts/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/function-starts/TestFunctionStarts.py b/lldb/test/API/macosx/function-starts/TestFunctionStarts.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/function-starts/TestFunctionStarts.py
rename to lldb/test/API/macosx/function-starts/TestFunctionStarts.py

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/function-starts/main.cpp b/lldb/test/API/macosx/function-starts/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/function-starts/main.cpp
rename to lldb/test/API/macosx/function-starts/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/Makefile b/lldb/test/API/macosx/indirect_symbol/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/Makefile
rename to lldb/test/API/macosx/indirect_symbol/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/TestIndirectSymbols.py b/lldb/test/API/macosx/indirect_symbol/TestIndirectSymbols.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/TestIndirectSymbols.py
rename to lldb/test/API/macosx/indirect_symbol/TestIndirectSymbols.py

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/alias.list b/lldb/test/API/macosx/indirect_symbol/alias.list
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/alias.list
rename to lldb/test/API/macosx/indirect_symbol/alias.list

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/indirect.c b/lldb/test/API/macosx/indirect_symbol/indirect.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/indirect.c
rename to lldb/test/API/macosx/indirect_symbol/indirect.c

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/main.c b/lldb/test/API/macosx/indirect_symbol/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/main.c
rename to lldb/test/API/macosx/indirect_symbol/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/reexport.c b/lldb/test/API/macosx/indirect_symbol/reexport.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/reexport.c
rename to lldb/test/API/macosx/indirect_symbol/reexport.c

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/Makefile b/lldb/test/API/macosx/lc-note/kern-ver-str/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/Makefile
rename to lldb/test/API/macosx/lc-note/kern-ver-str/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/TestKernVerStrLCNOTE.py b/lldb/test/API/macosx/lc-note/kern-ver-str/TestKernVerStrLCNOTE.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/TestKernVerStrLCNOTE.py
rename to lldb/test/API/macosx/lc-note/kern-ver-str/TestKernVerStrLCNOTE.py

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/create-empty-corefile.cpp b/lldb/test/API/macosx/lc-note/kern-ver-str/create-empty-corefile.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/create-empty-corefile.cpp
rename to lldb/test/API/macosx/lc-note/kern-ver-str/create-empty-corefile.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/main.c b/lldb/test/API/macosx/lc-note/kern-ver-str/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/main.c
rename to lldb/test/API/macosx/lc-note/kern-ver-str/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/load-kext/TestLoadKext.py b/lldb/test/API/macosx/load-kext/TestLoadKext.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/load-kext/TestLoadKext.py
rename to lldb/test/API/macosx/load-kext/TestLoadKext.py

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/load-kext/mykext.yaml b/lldb/test/API/macosx/load-kext/mykext.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/load-kext/mykext.yaml
rename to lldb/test/API/macosx/load-kext/mykext.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/macabi/Makefile b/lldb/test/API/macosx/macabi/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/macabi/Makefile
rename to lldb/test/API/macosx/macabi/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/macabi/TestMacABImacOSFramework.py b/lldb/test/API/macosx/macabi/TestMacABImacOSFramework.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/macabi/TestMacABImacOSFramework.py
rename to lldb/test/API/macosx/macabi/TestMacABImacOSFramework.py

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/macabi/foo.c b/lldb/test/API/macosx/macabi/foo.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/macabi/foo.c
rename to lldb/test/API/macosx/macabi/foo.c

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/macabi/foo.h b/lldb/test/API/macosx/macabi/foo.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/macabi/foo.h
rename to lldb/test/API/macosx/macabi/foo.h

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/macabi/main.c b/lldb/test/API/macosx/macabi/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/macabi/main.c
rename to lldb/test/API/macosx/macabi/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/nslog/Makefile b/lldb/test/API/macosx/nslog/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/nslog/Makefile
rename to lldb/test/API/macosx/nslog/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/nslog/TestDarwinNSLogOutput.py b/lldb/test/API/macosx/nslog/TestDarwinNSLogOutput.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/nslog/TestDarwinNSLogOutput.py
rename to lldb/test/API/macosx/nslog/TestDarwinNSLogOutput.py

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/nslog/main.m b/lldb/test/API/macosx/nslog/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/nslog/main.m
rename to lldb/test/API/macosx/nslog/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/order/Makefile b/lldb/test/API/macosx/order/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/order/Makefile
rename to lldb/test/API/macosx/order/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/order/TestOrderFile.py b/lldb/test/API/macosx/order/TestOrderFile.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/order/TestOrderFile.py
rename to lldb/test/API/macosx/order/TestOrderFile.py

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/order/cmds.txt b/lldb/test/API/macosx/order/cmds.txt
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/order/cmds.txt
rename to lldb/test/API/macosx/order/cmds.txt

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/order/main.c b/lldb/test/API/macosx/order/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/order/main.c
rename to lldb/test/API/macosx/order/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/order/order-file b/lldb/test/API/macosx/order/order-file
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/order/order-file
rename to lldb/test/API/macosx/order/order-file

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/queues/Makefile b/lldb/test/API/macosx/queues/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/queues/Makefile
rename to lldb/test/API/macosx/queues/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/queues/TestQueues.py b/lldb/test/API/macosx/queues/TestQueues.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/queues/TestQueues.py
rename to lldb/test/API/macosx/queues/TestQueues.py

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/queues/main.c b/lldb/test/API/macosx/queues/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/queues/main.c
rename to lldb/test/API/macosx/queues/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/safe-to-func-call/Makefile b/lldb/test/API/macosx/safe-to-func-call/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/safe-to-func-call/Makefile
rename to lldb/test/API/macosx/safe-to-func-call/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/safe-to-func-call/TestSafeFuncCalls.py b/lldb/test/API/macosx/safe-to-func-call/TestSafeFuncCalls.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/safe-to-func-call/TestSafeFuncCalls.py
rename to lldb/test/API/macosx/safe-to-func-call/TestSafeFuncCalls.py

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/safe-to-func-call/main.c b/lldb/test/API/macosx/safe-to-func-call/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/safe-to-func-call/main.c
rename to lldb/test/API/macosx/safe-to-func-call/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/thread-names/Makefile b/lldb/test/API/macosx/thread-names/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/thread-names/Makefile
rename to lldb/test/API/macosx/thread-names/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/thread-names/TestInterruptThreadNames.py b/lldb/test/API/macosx/thread-names/TestInterruptThreadNames.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/thread-names/TestInterruptThreadNames.py
rename to lldb/test/API/macosx/thread-names/TestInterruptThreadNames.py

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/thread-names/main.c b/lldb/test/API/macosx/thread-names/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/thread-names/main.c
rename to lldb/test/API/macosx/thread-names/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/universal/Makefile b/lldb/test/API/macosx/universal/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/universal/Makefile
rename to lldb/test/API/macosx/universal/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/universal/TestUniversal.py b/lldb/test/API/macosx/universal/TestUniversal.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/universal/TestUniversal.py
rename to lldb/test/API/macosx/universal/TestUniversal.py

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/universal/main.c b/lldb/test/API/macosx/universal/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/universal/main.c
rename to lldb/test/API/macosx/universal/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/version_zero/TestGetVersionZeroVersion.py b/lldb/test/API/macosx/version_zero/TestGetVersionZeroVersion.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/version_zero/TestGetVersionZeroVersion.py
rename to lldb/test/API/macosx/version_zero/TestGetVersionZeroVersion.py

diff  --git a/lldb/packages/Python/lldbsuite/test/macosx/version_zero/libDylib.dylib.yaml b/lldb/test/API/macosx/version_zero/libDylib.dylib.yaml
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/macosx/version_zero/libDylib.dylib.yaml
rename to lldb/test/API/macosx/version_zero/libDylib.dylib.yaml

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/.categories b/lldb/test/API/python_api/.categories
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/.categories
rename to lldb/test/API/python_api/.categories

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/breakpoint/Makefile b/lldb/test/API/python_api/breakpoint/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/breakpoint/Makefile
rename to lldb/test/API/python_api/breakpoint/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/breakpoint/TestBreakpointAPI.py b/lldb/test/API/python_api/breakpoint/TestBreakpointAPI.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/breakpoint/TestBreakpointAPI.py
rename to lldb/test/API/python_api/breakpoint/TestBreakpointAPI.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/breakpoint/main.c b/lldb/test/API/python_api/breakpoint/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/breakpoint/main.c
rename to lldb/test/API/python_api/breakpoint/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/class_members/Makefile b/lldb/test/API/python_api/class_members/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/class_members/Makefile
rename to lldb/test/API/python_api/class_members/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/class_members/TestSBTypeClassMembers.py b/lldb/test/API/python_api/class_members/TestSBTypeClassMembers.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/class_members/TestSBTypeClassMembers.py
rename to lldb/test/API/python_api/class_members/TestSBTypeClassMembers.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/class_members/main.mm b/lldb/test/API/python_api/class_members/main.mm
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/class_members/main.mm
rename to lldb/test/API/python_api/class_members/main.mm

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/debugger/TestDebuggerAPI.py b/lldb/test/API/python_api/debugger/TestDebuggerAPI.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/debugger/TestDebuggerAPI.py
rename to lldb/test/API/python_api/debugger/TestDebuggerAPI.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py b/lldb/test/API/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py
rename to lldb/test/API/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_address.py b/lldb/test/API/python_api/default-constructor/sb_address.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_address.py
rename to lldb/test/API/python_api/default-constructor/sb_address.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_block.py b/lldb/test/API/python_api/default-constructor/sb_block.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_block.py
rename to lldb/test/API/python_api/default-constructor/sb_block.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_breakpoint.py b/lldb/test/API/python_api/default-constructor/sb_breakpoint.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_breakpoint.py
rename to lldb/test/API/python_api/default-constructor/sb_breakpoint.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_breakpointlocation.py b/lldb/test/API/python_api/default-constructor/sb_breakpointlocation.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_breakpointlocation.py
rename to lldb/test/API/python_api/default-constructor/sb_breakpointlocation.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_breakpointname.py b/lldb/test/API/python_api/default-constructor/sb_breakpointname.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_breakpointname.py
rename to lldb/test/API/python_api/default-constructor/sb_breakpointname.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_broadcaster.py b/lldb/test/API/python_api/default-constructor/sb_broadcaster.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_broadcaster.py
rename to lldb/test/API/python_api/default-constructor/sb_broadcaster.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_communication.py b/lldb/test/API/python_api/default-constructor/sb_communication.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_communication.py
rename to lldb/test/API/python_api/default-constructor/sb_communication.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_compileunit.py b/lldb/test/API/python_api/default-constructor/sb_compileunit.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_compileunit.py
rename to lldb/test/API/python_api/default-constructor/sb_compileunit.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_debugger.py b/lldb/test/API/python_api/default-constructor/sb_debugger.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_debugger.py
rename to lldb/test/API/python_api/default-constructor/sb_debugger.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_error.py b/lldb/test/API/python_api/default-constructor/sb_error.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_error.py
rename to lldb/test/API/python_api/default-constructor/sb_error.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_event.py b/lldb/test/API/python_api/default-constructor/sb_event.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_event.py
rename to lldb/test/API/python_api/default-constructor/sb_event.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_filespec.py b/lldb/test/API/python_api/default-constructor/sb_filespec.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_filespec.py
rename to lldb/test/API/python_api/default-constructor/sb_filespec.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_frame.py b/lldb/test/API/python_api/default-constructor/sb_frame.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_frame.py
rename to lldb/test/API/python_api/default-constructor/sb_frame.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_function.py b/lldb/test/API/python_api/default-constructor/sb_function.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_function.py
rename to lldb/test/API/python_api/default-constructor/sb_function.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_instruction.py b/lldb/test/API/python_api/default-constructor/sb_instruction.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_instruction.py
rename to lldb/test/API/python_api/default-constructor/sb_instruction.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_instructionlist.py b/lldb/test/API/python_api/default-constructor/sb_instructionlist.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_instructionlist.py
rename to lldb/test/API/python_api/default-constructor/sb_instructionlist.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_lineentry.py b/lldb/test/API/python_api/default-constructor/sb_lineentry.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_lineentry.py
rename to lldb/test/API/python_api/default-constructor/sb_lineentry.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_listener.py b/lldb/test/API/python_api/default-constructor/sb_listener.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_listener.py
rename to lldb/test/API/python_api/default-constructor/sb_listener.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_module.py b/lldb/test/API/python_api/default-constructor/sb_module.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_module.py
rename to lldb/test/API/python_api/default-constructor/sb_module.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_process.py b/lldb/test/API/python_api/default-constructor/sb_process.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_process.py
rename to lldb/test/API/python_api/default-constructor/sb_process.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_process_info.py b/lldb/test/API/python_api/default-constructor/sb_process_info.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_process_info.py
rename to lldb/test/API/python_api/default-constructor/sb_process_info.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_section.py b/lldb/test/API/python_api/default-constructor/sb_section.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_section.py
rename to lldb/test/API/python_api/default-constructor/sb_section.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_stringlist.py b/lldb/test/API/python_api/default-constructor/sb_stringlist.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_stringlist.py
rename to lldb/test/API/python_api/default-constructor/sb_stringlist.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_symbol.py b/lldb/test/API/python_api/default-constructor/sb_symbol.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_symbol.py
rename to lldb/test/API/python_api/default-constructor/sb_symbol.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_symbolcontext.py b/lldb/test/API/python_api/default-constructor/sb_symbolcontext.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_symbolcontext.py
rename to lldb/test/API/python_api/default-constructor/sb_symbolcontext.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_target.py b/lldb/test/API/python_api/default-constructor/sb_target.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_target.py
rename to lldb/test/API/python_api/default-constructor/sb_target.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_thread.py b/lldb/test/API/python_api/default-constructor/sb_thread.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_thread.py
rename to lldb/test/API/python_api/default-constructor/sb_thread.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_type.py b/lldb/test/API/python_api/default-constructor/sb_type.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_type.py
rename to lldb/test/API/python_api/default-constructor/sb_type.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_value.py b/lldb/test/API/python_api/default-constructor/sb_value.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_value.py
rename to lldb/test/API/python_api/default-constructor/sb_value.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_valuelist.py b/lldb/test/API/python_api/default-constructor/sb_valuelist.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_valuelist.py
rename to lldb/test/API/python_api/default-constructor/sb_valuelist.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_watchpoint.py b/lldb/test/API/python_api/default-constructor/sb_watchpoint.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_watchpoint.py
rename to lldb/test/API/python_api/default-constructor/sb_watchpoint.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/disassemble-raw-data/TestDisassembleRawData.py b/lldb/test/API/python_api/disassemble-raw-data/TestDisassembleRawData.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/disassemble-raw-data/TestDisassembleRawData.py
rename to lldb/test/API/python_api/disassemble-raw-data/TestDisassembleRawData.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/disassemble-raw-data/TestDisassemble_VST1_64.py b/lldb/test/API/python_api/disassemble-raw-data/TestDisassemble_VST1_64.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/disassemble-raw-data/TestDisassemble_VST1_64.py
rename to lldb/test/API/python_api/disassemble-raw-data/TestDisassemble_VST1_64.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/event/Makefile b/lldb/test/API/python_api/event/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/event/Makefile
rename to lldb/test/API/python_api/event/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/event/TestEvents.py b/lldb/test/API/python_api/event/TestEvents.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/event/TestEvents.py
rename to lldb/test/API/python_api/event/TestEvents.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/event/main.c b/lldb/test/API/python_api/event/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/event/main.c
rename to lldb/test/API/python_api/event/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/exprpath_synthetic/TestExprPathSynthetic.py b/lldb/test/API/python_api/exprpath_synthetic/TestExprPathSynthetic.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/exprpath_synthetic/TestExprPathSynthetic.py
rename to lldb/test/API/python_api/exprpath_synthetic/TestExprPathSynthetic.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/exprpath_synthetic/main.mm b/lldb/test/API/python_api/exprpath_synthetic/main.mm
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/exprpath_synthetic/main.mm
rename to lldb/test/API/python_api/exprpath_synthetic/main.mm

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/file_handle/TestFileHandle.py b/lldb/test/API/python_api/file_handle/TestFileHandle.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/file_handle/TestFileHandle.py
rename to lldb/test/API/python_api/file_handle/TestFileHandle.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/findvalue_duplist/Makefile b/lldb/test/API/python_api/findvalue_duplist/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/findvalue_duplist/Makefile
rename to lldb/test/API/python_api/findvalue_duplist/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/findvalue_duplist/TestSBFrameFindValue.py b/lldb/test/API/python_api/findvalue_duplist/TestSBFrameFindValue.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/findvalue_duplist/TestSBFrameFindValue.py
rename to lldb/test/API/python_api/findvalue_duplist/TestSBFrameFindValue.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/findvalue_duplist/main.cpp b/lldb/test/API/python_api/findvalue_duplist/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/findvalue_duplist/main.cpp
rename to lldb/test/API/python_api/findvalue_duplist/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/formatters/Makefile b/lldb/test/API/python_api/formatters/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/formatters/Makefile
rename to lldb/test/API/python_api/formatters/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/formatters/TestFormattersSBAPI.py b/lldb/test/API/python_api/formatters/TestFormattersSBAPI.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/formatters/TestFormattersSBAPI.py
rename to lldb/test/API/python_api/formatters/TestFormattersSBAPI.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/formatters/main.cpp b/lldb/test/API/python_api/formatters/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/formatters/main.cpp
rename to lldb/test/API/python_api/formatters/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/formatters/synth.py b/lldb/test/API/python_api/formatters/synth.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/formatters/synth.py
rename to lldb/test/API/python_api/formatters/synth.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/frame/Makefile b/lldb/test/API/python_api/frame/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/frame/Makefile
rename to lldb/test/API/python_api/frame/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/frame/TestFrames.py b/lldb/test/API/python_api/frame/TestFrames.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/frame/TestFrames.py
rename to lldb/test/API/python_api/frame/TestFrames.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/frame/get-variables/Makefile b/lldb/test/API/python_api/frame/get-variables/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/frame/get-variables/Makefile
rename to lldb/test/API/python_api/frame/get-variables/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/frame/get-variables/TestGetVariables.py b/lldb/test/API/python_api/frame/get-variables/TestGetVariables.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/frame/get-variables/TestGetVariables.py
rename to lldb/test/API/python_api/frame/get-variables/TestGetVariables.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/frame/get-variables/main.c b/lldb/test/API/python_api/frame/get-variables/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/frame/get-variables/main.c
rename to lldb/test/API/python_api/frame/get-variables/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/frame/inlines/Makefile b/lldb/test/API/python_api/frame/inlines/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/frame/inlines/Makefile
rename to lldb/test/API/python_api/frame/inlines/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/frame/inlines/TestInlinedFrame.py b/lldb/test/API/python_api/frame/inlines/TestInlinedFrame.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/frame/inlines/TestInlinedFrame.py
rename to lldb/test/API/python_api/frame/inlines/TestInlinedFrame.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/frame/inlines/inlines.c b/lldb/test/API/python_api/frame/inlines/inlines.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/frame/inlines/inlines.c
rename to lldb/test/API/python_api/frame/inlines/inlines.c

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/frame/inlines/inlines.h b/lldb/test/API/python_api/frame/inlines/inlines.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/frame/inlines/inlines.h
rename to lldb/test/API/python_api/frame/inlines/inlines.h

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/frame/main.c b/lldb/test/API/python_api/frame/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/frame/main.c
rename to lldb/test/API/python_api/frame/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/function_symbol/Makefile b/lldb/test/API/python_api/function_symbol/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/function_symbol/Makefile
rename to lldb/test/API/python_api/function_symbol/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/function_symbol/TestDisasmAPI.py b/lldb/test/API/python_api/function_symbol/TestDisasmAPI.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/function_symbol/TestDisasmAPI.py
rename to lldb/test/API/python_api/function_symbol/TestDisasmAPI.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/function_symbol/TestSymbolAPI.py b/lldb/test/API/python_api/function_symbol/TestSymbolAPI.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/function_symbol/TestSymbolAPI.py
rename to lldb/test/API/python_api/function_symbol/TestSymbolAPI.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/function_symbol/main.c b/lldb/test/API/python_api/function_symbol/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/function_symbol/main.c
rename to lldb/test/API/python_api/function_symbol/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/get-value-32bit-int/Makefile b/lldb/test/API/python_api/get-value-32bit-int/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/get-value-32bit-int/Makefile
rename to lldb/test/API/python_api/get-value-32bit-int/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/get-value-32bit-int/TestGetValue32BitInt.py b/lldb/test/API/python_api/get-value-32bit-int/TestGetValue32BitInt.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/get-value-32bit-int/TestGetValue32BitInt.py
rename to lldb/test/API/python_api/get-value-32bit-int/TestGetValue32BitInt.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/get-value-32bit-int/main.cpp b/lldb/test/API/python_api/get-value-32bit-int/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/get-value-32bit-int/main.cpp
rename to lldb/test/API/python_api/get-value-32bit-int/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/hello_world/Makefile b/lldb/test/API/python_api/hello_world/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/hello_world/Makefile
rename to lldb/test/API/python_api/hello_world/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/hello_world/TestHelloWorld.py b/lldb/test/API/python_api/hello_world/TestHelloWorld.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/hello_world/TestHelloWorld.py
rename to lldb/test/API/python_api/hello_world/TestHelloWorld.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/hello_world/main.c b/lldb/test/API/python_api/hello_world/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/hello_world/main.c
rename to lldb/test/API/python_api/hello_world/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/interpreter/Makefile b/lldb/test/API/python_api/interpreter/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/interpreter/Makefile
rename to lldb/test/API/python_api/interpreter/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/interpreter/TestCommandInterpreterAPI.py b/lldb/test/API/python_api/interpreter/TestCommandInterpreterAPI.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/interpreter/TestCommandInterpreterAPI.py
rename to lldb/test/API/python_api/interpreter/TestCommandInterpreterAPI.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/interpreter/TestRunCommandInterpreterAPI.py b/lldb/test/API/python_api/interpreter/TestRunCommandInterpreterAPI.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/interpreter/TestRunCommandInterpreterAPI.py
rename to lldb/test/API/python_api/interpreter/TestRunCommandInterpreterAPI.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/interpreter/main.c b/lldb/test/API/python_api/interpreter/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/interpreter/main.c
rename to lldb/test/API/python_api/interpreter/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/TestSwigVersion.py b/lldb/test/API/python_api/lldbutil/TestSwigVersion.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/lldbutil/TestSwigVersion.py
rename to lldb/test/API/python_api/lldbutil/TestSwigVersion.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/frame/Makefile b/lldb/test/API/python_api/lldbutil/frame/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/lldbutil/frame/Makefile
rename to lldb/test/API/python_api/lldbutil/frame/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/frame/TestFrameUtils.py b/lldb/test/API/python_api/lldbutil/frame/TestFrameUtils.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/lldbutil/frame/TestFrameUtils.py
rename to lldb/test/API/python_api/lldbutil/frame/TestFrameUtils.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/frame/main.c b/lldb/test/API/python_api/lldbutil/frame/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/lldbutil/frame/main.c
rename to lldb/test/API/python_api/lldbutil/frame/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/iter/Makefile b/lldb/test/API/python_api/lldbutil/iter/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/lldbutil/iter/Makefile
rename to lldb/test/API/python_api/lldbutil/iter/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/iter/TestLLDBIterator.py b/lldb/test/API/python_api/lldbutil/iter/TestLLDBIterator.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/lldbutil/iter/TestLLDBIterator.py
rename to lldb/test/API/python_api/lldbutil/iter/TestLLDBIterator.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/iter/TestRegistersIterator.py b/lldb/test/API/python_api/lldbutil/iter/TestRegistersIterator.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/lldbutil/iter/TestRegistersIterator.py
rename to lldb/test/API/python_api/lldbutil/iter/TestRegistersIterator.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/iter/main.cpp b/lldb/test/API/python_api/lldbutil/iter/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/lldbutil/iter/main.cpp
rename to lldb/test/API/python_api/lldbutil/iter/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/Makefile b/lldb/test/API/python_api/lldbutil/process/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/Makefile
rename to lldb/test/API/python_api/lldbutil/process/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/TestPrintStackTraces.py b/lldb/test/API/python_api/lldbutil/process/TestPrintStackTraces.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/TestPrintStackTraces.py
rename to lldb/test/API/python_api/lldbutil/process/TestPrintStackTraces.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/main.cpp b/lldb/test/API/python_api/lldbutil/process/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/main.cpp
rename to lldb/test/API/python_api/lldbutil/process/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/module_section/Makefile b/lldb/test/API/python_api/module_section/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/module_section/Makefile
rename to lldb/test/API/python_api/module_section/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/module_section/TestModuleAndSection.py b/lldb/test/API/python_api/module_section/TestModuleAndSection.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/module_section/TestModuleAndSection.py
rename to lldb/test/API/python_api/module_section/TestModuleAndSection.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/module_section/b.cpp b/lldb/test/API/python_api/module_section/b.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/module_section/b.cpp
rename to lldb/test/API/python_api/module_section/b.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/module_section/c.cpp b/lldb/test/API/python_api/module_section/c.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/module_section/c.cpp
rename to lldb/test/API/python_api/module_section/c.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/module_section/main.cpp b/lldb/test/API/python_api/module_section/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/module_section/main.cpp
rename to lldb/test/API/python_api/module_section/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/name_lookup/Makefile b/lldb/test/API/python_api/name_lookup/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/name_lookup/Makefile
rename to lldb/test/API/python_api/name_lookup/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/name_lookup/TestNameLookup.py b/lldb/test/API/python_api/name_lookup/TestNameLookup.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/name_lookup/TestNameLookup.py
rename to lldb/test/API/python_api/name_lookup/TestNameLookup.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/name_lookup/main.cpp b/lldb/test/API/python_api/name_lookup/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/name_lookup/main.cpp
rename to lldb/test/API/python_api/name_lookup/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/objc_type/Makefile b/lldb/test/API/python_api/objc_type/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/objc_type/Makefile
rename to lldb/test/API/python_api/objc_type/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/objc_type/TestObjCType.py b/lldb/test/API/python_api/objc_type/TestObjCType.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/objc_type/TestObjCType.py
rename to lldb/test/API/python_api/objc_type/TestObjCType.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/objc_type/main.m b/lldb/test/API/python_api/objc_type/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/objc_type/main.m
rename to lldb/test/API/python_api/objc_type/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/process/Makefile b/lldb/test/API/python_api/process/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/process/Makefile
rename to lldb/test/API/python_api/process/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/process/TestProcessAPI.py b/lldb/test/API/python_api/process/TestProcessAPI.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/process/TestProcessAPI.py
rename to lldb/test/API/python_api/process/TestProcessAPI.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/process/io/Makefile b/lldb/test/API/python_api/process/io/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/process/io/Makefile
rename to lldb/test/API/python_api/process/io/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/process/io/TestProcessIO.py b/lldb/test/API/python_api/process/io/TestProcessIO.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/process/io/TestProcessIO.py
rename to lldb/test/API/python_api/process/io/TestProcessIO.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/process/io/main.c b/lldb/test/API/python_api/process/io/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/process/io/main.c
rename to lldb/test/API/python_api/process/io/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/process/main.cpp b/lldb/test/API/python_api/process/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/process/main.cpp
rename to lldb/test/API/python_api/process/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/process/read-mem-cstring/Makefile b/lldb/test/API/python_api/process/read-mem-cstring/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/process/read-mem-cstring/Makefile
rename to lldb/test/API/python_api/process/read-mem-cstring/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/process/read-mem-cstring/TestReadMemCString.py b/lldb/test/API/python_api/process/read-mem-cstring/TestReadMemCString.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/process/read-mem-cstring/TestReadMemCString.py
rename to lldb/test/API/python_api/process/read-mem-cstring/TestReadMemCString.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/process/read-mem-cstring/main.c b/lldb/test/API/python_api/process/read-mem-cstring/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/process/read-mem-cstring/main.c
rename to lldb/test/API/python_api/process/read-mem-cstring/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/sbdata/Makefile b/lldb/test/API/python_api/sbdata/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/sbdata/Makefile
rename to lldb/test/API/python_api/sbdata/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/sbdata/TestSBData.py b/lldb/test/API/python_api/sbdata/TestSBData.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/sbdata/TestSBData.py
rename to lldb/test/API/python_api/sbdata/TestSBData.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/sbdata/main.cpp b/lldb/test/API/python_api/sbdata/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/sbdata/main.cpp
rename to lldb/test/API/python_api/sbdata/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/sblaunchinfo/TestSBLaunchInfo.py b/lldb/test/API/python_api/sblaunchinfo/TestSBLaunchInfo.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/sblaunchinfo/TestSBLaunchInfo.py
rename to lldb/test/API/python_api/sblaunchinfo/TestSBLaunchInfo.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/sbstructureddata/TestStructuredDataAPI.py b/lldb/test/API/python_api/sbstructureddata/TestStructuredDataAPI.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/sbstructureddata/TestStructuredDataAPI.py
rename to lldb/test/API/python_api/sbstructureddata/TestStructuredDataAPI.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/sbtype_typeclass/TestSBTypeTypeClass.py b/lldb/test/API/python_api/sbtype_typeclass/TestSBTypeTypeClass.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/sbtype_typeclass/TestSBTypeTypeClass.py
rename to lldb/test/API/python_api/sbtype_typeclass/TestSBTypeTypeClass.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/sbtype_typeclass/main.m b/lldb/test/API/python_api/sbtype_typeclass/main.m
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/sbtype_typeclass/main.m
rename to lldb/test/API/python_api/sbtype_typeclass/main.m

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/sbvalue_const_addrof/TestSBValueConstAddrOf.py b/lldb/test/API/python_api/sbvalue_const_addrof/TestSBValueConstAddrOf.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/sbvalue_const_addrof/TestSBValueConstAddrOf.py
rename to lldb/test/API/python_api/sbvalue_const_addrof/TestSBValueConstAddrOf.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/sbvalue_const_addrof/main.cpp b/lldb/test/API/python_api/sbvalue_const_addrof/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/sbvalue_const_addrof/main.cpp
rename to lldb/test/API/python_api/sbvalue_const_addrof/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/sbvalue_persist/Makefile b/lldb/test/API/python_api/sbvalue_persist/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/sbvalue_persist/Makefile
rename to lldb/test/API/python_api/sbvalue_persist/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/sbvalue_persist/TestSBValuePersist.py b/lldb/test/API/python_api/sbvalue_persist/TestSBValuePersist.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/sbvalue_persist/TestSBValuePersist.py
rename to lldb/test/API/python_api/sbvalue_persist/TestSBValuePersist.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/sbvalue_persist/main.cpp b/lldb/test/API/python_api/sbvalue_persist/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/sbvalue_persist/main.cpp
rename to lldb/test/API/python_api/sbvalue_persist/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/section/Makefile b/lldb/test/API/python_api/section/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/section/Makefile
rename to lldb/test/API/python_api/section/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/section/TestSectionAPI.py b/lldb/test/API/python_api/section/TestSectionAPI.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/section/TestSectionAPI.py
rename to lldb/test/API/python_api/section/TestSectionAPI.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/section/main.c b/lldb/test/API/python_api/section/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/section/main.c
rename to lldb/test/API/python_api/section/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/signals/Makefile b/lldb/test/API/python_api/signals/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/signals/Makefile
rename to lldb/test/API/python_api/signals/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/signals/TestSignalsAPI.py b/lldb/test/API/python_api/signals/TestSignalsAPI.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/signals/TestSignalsAPI.py
rename to lldb/test/API/python_api/signals/TestSignalsAPI.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/signals/main.cpp b/lldb/test/API/python_api/signals/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/signals/main.cpp
rename to lldb/test/API/python_api/signals/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/Makefile b/lldb/test/API/python_api/symbol-context/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/symbol-context/Makefile
rename to lldb/test/API/python_api/symbol-context/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/TestSymbolContext.py b/lldb/test/API/python_api/symbol-context/TestSymbolContext.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/symbol-context/TestSymbolContext.py
rename to lldb/test/API/python_api/symbol-context/TestSymbolContext.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/main.c b/lldb/test/API/python_api/symbol-context/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/symbol-context/main.c
rename to lldb/test/API/python_api/symbol-context/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/Makefile b/lldb/test/API/python_api/symbol-context/two-files/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/Makefile
rename to lldb/test/API/python_api/symbol-context/two-files/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/TestSymbolContextTwoFiles.py b/lldb/test/API/python_api/symbol-context/two-files/TestSymbolContextTwoFiles.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/TestSymbolContextTwoFiles.py
rename to lldb/test/API/python_api/symbol-context/two-files/TestSymbolContextTwoFiles.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/decls.h b/lldb/test/API/python_api/symbol-context/two-files/decls.h
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/decls.h
rename to lldb/test/API/python_api/symbol-context/two-files/decls.h

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/file1.cpp b/lldb/test/API/python_api/symbol-context/two-files/file1.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/file1.cpp
rename to lldb/test/API/python_api/symbol-context/two-files/file1.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/file2.cpp b/lldb/test/API/python_api/symbol-context/two-files/file2.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/file2.cpp
rename to lldb/test/API/python_api/symbol-context/two-files/file2.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/target/Makefile b/lldb/test/API/python_api/target/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/target/Makefile
rename to lldb/test/API/python_api/target/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/target/TestTargetAPI.py b/lldb/test/API/python_api/target/TestTargetAPI.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/target/TestTargetAPI.py
rename to lldb/test/API/python_api/target/TestTargetAPI.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/target/main.c b/lldb/test/API/python_api/target/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/target/main.c
rename to lldb/test/API/python_api/target/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/thread/Makefile b/lldb/test/API/python_api/thread/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/thread/Makefile
rename to lldb/test/API/python_api/thread/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/thread/TestThreadAPI.py b/lldb/test/API/python_api/thread/TestThreadAPI.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/thread/TestThreadAPI.py
rename to lldb/test/API/python_api/thread/TestThreadAPI.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/thread/main.cpp b/lldb/test/API/python_api/thread/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/thread/main.cpp
rename to lldb/test/API/python_api/thread/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/thread/main2.cpp b/lldb/test/API/python_api/thread/main2.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/thread/main2.cpp
rename to lldb/test/API/python_api/thread/main2.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/type/Makefile b/lldb/test/API/python_api/type/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/type/Makefile
rename to lldb/test/API/python_api/type/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/type/TestTypeList.py b/lldb/test/API/python_api/type/TestTypeList.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/type/TestTypeList.py
rename to lldb/test/API/python_api/type/TestTypeList.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/type/main.cpp b/lldb/test/API/python_api/type/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/type/main.cpp
rename to lldb/test/API/python_api/type/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/value/Makefile b/lldb/test/API/python_api/value/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/value/Makefile
rename to lldb/test/API/python_api/value/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/value/TestValueAPI.py b/lldb/test/API/python_api/value/TestValueAPI.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/value/TestValueAPI.py
rename to lldb/test/API/python_api/value/TestValueAPI.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/value/change_values/Makefile b/lldb/test/API/python_api/value/change_values/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/value/change_values/Makefile
rename to lldb/test/API/python_api/value/change_values/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/value/change_values/TestChangeValueAPI.py b/lldb/test/API/python_api/value/change_values/TestChangeValueAPI.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/value/change_values/TestChangeValueAPI.py
rename to lldb/test/API/python_api/value/change_values/TestChangeValueAPI.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/value/change_values/main.c b/lldb/test/API/python_api/value/change_values/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/value/change_values/main.c
rename to lldb/test/API/python_api/value/change_values/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/value/empty_class/Makefile b/lldb/test/API/python_api/value/empty_class/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/value/empty_class/Makefile
rename to lldb/test/API/python_api/value/empty_class/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/value/empty_class/TestValueAPIEmptyClass.py b/lldb/test/API/python_api/value/empty_class/TestValueAPIEmptyClass.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/value/empty_class/TestValueAPIEmptyClass.py
rename to lldb/test/API/python_api/value/empty_class/TestValueAPIEmptyClass.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/value/empty_class/main.cpp b/lldb/test/API/python_api/value/empty_class/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/value/empty_class/main.cpp
rename to lldb/test/API/python_api/value/empty_class/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/value/linked_list/Makefile b/lldb/test/API/python_api/value/linked_list/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/value/linked_list/Makefile
rename to lldb/test/API/python_api/value/linked_list/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/value/linked_list/TestValueAPILinkedList.py b/lldb/test/API/python_api/value/linked_list/TestValueAPILinkedList.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/value/linked_list/TestValueAPILinkedList.py
rename to lldb/test/API/python_api/value/linked_list/TestValueAPILinkedList.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/value/linked_list/main.cpp b/lldb/test/API/python_api/value/linked_list/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/value/linked_list/main.cpp
rename to lldb/test/API/python_api/value/linked_list/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/value/main.c b/lldb/test/API/python_api/value/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/value/main.c
rename to lldb/test/API/python_api/value/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/value_var_update/Makefile b/lldb/test/API/python_api/value_var_update/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/value_var_update/Makefile
rename to lldb/test/API/python_api/value_var_update/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/value_var_update/TestValueVarUpdate.py b/lldb/test/API/python_api/value_var_update/TestValueVarUpdate.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/value_var_update/TestValueVarUpdate.py
rename to lldb/test/API/python_api/value_var_update/TestValueVarUpdate.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/value_var_update/main.c b/lldb/test/API/python_api/value_var_update/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/value_var_update/main.c
rename to lldb/test/API/python_api/value_var_update/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/.categories b/lldb/test/API/python_api/watchpoint/.categories
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/watchpoint/.categories
rename to lldb/test/API/python_api/watchpoint/.categories

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/Makefile b/lldb/test/API/python_api/watchpoint/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/watchpoint/Makefile
rename to lldb/test/API/python_api/watchpoint/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/TestSetWatchpoint.py b/lldb/test/API/python_api/watchpoint/TestSetWatchpoint.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/watchpoint/TestSetWatchpoint.py
rename to lldb/test/API/python_api/watchpoint/TestSetWatchpoint.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/TestWatchpointIgnoreCount.py b/lldb/test/API/python_api/watchpoint/TestWatchpointIgnoreCount.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/watchpoint/TestWatchpointIgnoreCount.py
rename to lldb/test/API/python_api/watchpoint/TestWatchpointIgnoreCount.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/TestWatchpointIter.py b/lldb/test/API/python_api/watchpoint/TestWatchpointIter.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/watchpoint/TestWatchpointIter.py
rename to lldb/test/API/python_api/watchpoint/TestWatchpointIter.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/condition/Makefile b/lldb/test/API/python_api/watchpoint/condition/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/watchpoint/condition/Makefile
rename to lldb/test/API/python_api/watchpoint/condition/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py b/lldb/test/API/python_api/watchpoint/condition/TestWatchpointConditionAPI.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py
rename to lldb/test/API/python_api/watchpoint/condition/TestWatchpointConditionAPI.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/condition/main.cpp b/lldb/test/API/python_api/watchpoint/condition/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/watchpoint/condition/main.cpp
rename to lldb/test/API/python_api/watchpoint/condition/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/main.c b/lldb/test/API/python_api/watchpoint/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/watchpoint/main.c
rename to lldb/test/API/python_api/watchpoint/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/watchlocation/Makefile b/lldb/test/API/python_api/watchpoint/watchlocation/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/watchpoint/watchlocation/Makefile
rename to lldb/test/API/python_api/watchpoint/watchlocation/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/watchlocation/TestSetWatchlocation.py b/lldb/test/API/python_api/watchpoint/watchlocation/TestSetWatchlocation.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/watchpoint/watchlocation/TestSetWatchlocation.py
rename to lldb/test/API/python_api/watchpoint/watchlocation/TestSetWatchlocation.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py b/lldb/test/API/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py
rename to lldb/test/API/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py

diff  --git a/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/watchlocation/main.cpp b/lldb/test/API/python_api/watchpoint/watchlocation/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/python_api/watchpoint/watchlocation/main.cpp
rename to lldb/test/API/python_api/watchpoint/watchlocation/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/sample_test/Makefile b/lldb/test/API/sample_test/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/sample_test/Makefile
rename to lldb/test/API/sample_test/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/sample_test/TestSampleInlineTest.py b/lldb/test/API/sample_test/TestSampleInlineTest.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/sample_test/TestSampleInlineTest.py
rename to lldb/test/API/sample_test/TestSampleInlineTest.py

diff  --git a/lldb/packages/Python/lldbsuite/test/sample_test/TestSampleTest.py b/lldb/test/API/sample_test/TestSampleTest.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/sample_test/TestSampleTest.py
rename to lldb/test/API/sample_test/TestSampleTest.py

diff  --git a/lldb/packages/Python/lldbsuite/test/sample_test/main.c b/lldb/test/API/sample_test/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/sample_test/main.c
rename to lldb/test/API/sample_test/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/sanity/TestModuleCacheSanity.py b/lldb/test/API/sanity/TestModuleCacheSanity.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/sanity/TestModuleCacheSanity.py
rename to lldb/test/API/sanity/TestModuleCacheSanity.py

diff  --git a/lldb/packages/Python/lldbsuite/test/source-manager/Makefile b/lldb/test/API/source-manager/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/source-manager/Makefile
rename to lldb/test/API/source-manager/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/source-manager/TestSourceManager.py b/lldb/test/API/source-manager/TestSourceManager.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/source-manager/TestSourceManager.py
rename to lldb/test/API/source-manager/TestSourceManager.py

diff  --git a/lldb/packages/Python/lldbsuite/test/source-manager/hidden/.keep b/lldb/test/API/source-manager/hidden/.keep
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/source-manager/hidden/.keep
rename to lldb/test/API/source-manager/hidden/.keep

diff  --git a/lldb/packages/Python/lldbsuite/test/source-manager/main.c b/lldb/test/API/source-manager/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/source-manager/main.c
rename to lldb/test/API/source-manager/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/terminal/TestEditline.py b/lldb/test/API/terminal/TestEditline.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/terminal/TestEditline.py
rename to lldb/test/API/terminal/TestEditline.py

diff  --git a/lldb/packages/Python/lldbsuite/test/terminal/TestSTTYBeforeAndAfter.py b/lldb/test/API/terminal/TestSTTYBeforeAndAfter.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/terminal/TestSTTYBeforeAndAfter.py
rename to lldb/test/API/terminal/TestSTTYBeforeAndAfter.py

diff  --git a/lldb/packages/Python/lldbsuite/test/test_runner/test/__init__.py b/lldb/test/API/test_runner/test/__init__.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/test_runner/test/__init__.py
rename to lldb/test/API/test_runner/test/__init__.py

diff  --git a/lldb/packages/Python/lldbsuite/test/test_runner/test/inferior.py b/lldb/test/API/test_runner/test/inferior.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/test_runner/test/inferior.py
rename to lldb/test/API/test_runner/test/inferior.py

diff  --git a/lldb/packages/Python/lldbsuite/test/test_runner/test/test_process_control.py b/lldb/test/API/test_runner/test/test_process_control.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/test_runner/test/test_process_control.py
rename to lldb/test/API/test_runner/test/test_process_control.py

diff  --git a/lldb/test/API/testcases b/lldb/test/API/testcases
deleted file mode 120000
index 370755973a73..000000000000
--- a/lldb/test/API/testcases
+++ /dev/null
@@ -1 +0,0 @@
-../../packages/Python/lldbsuite/test
\ No newline at end of file

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/.clang-format b/lldb/test/API/tools/lldb-server/.clang-format
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/.clang-format
rename to lldb/test/API/tools/lldb-server/.clang-format

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/Makefile b/lldb/test/API/tools/lldb-server/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/Makefile
rename to lldb/test/API/tools/lldb-server/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestAppleSimulatorOSType.py b/lldb/test/API/tools/lldb-server/TestAppleSimulatorOSType.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestAppleSimulatorOSType.py
rename to lldb/test/API/tools/lldb-server/TestAppleSimulatorOSType.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteAttach.py b/lldb/test/API/tools/lldb-server/TestGdbRemoteAttach.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteAttach.py
rename to lldb/test/API/tools/lldb-server/TestGdbRemoteAttach.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteAuxvSupport.py b/lldb/test/API/tools/lldb-server/TestGdbRemoteAuxvSupport.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteAuxvSupport.py
rename to lldb/test/API/tools/lldb-server/TestGdbRemoteAuxvSupport.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteExitCode.py b/lldb/test/API/tools/lldb-server/TestGdbRemoteExitCode.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteExitCode.py
rename to lldb/test/API/tools/lldb-server/TestGdbRemoteExitCode.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteExpeditedRegisters.py b/lldb/test/API/tools/lldb-server/TestGdbRemoteExpeditedRegisters.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteExpeditedRegisters.py
rename to lldb/test/API/tools/lldb-server/TestGdbRemoteExpeditedRegisters.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteHostInfo.py b/lldb/test/API/tools/lldb-server/TestGdbRemoteHostInfo.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteHostInfo.py
rename to lldb/test/API/tools/lldb-server/TestGdbRemoteHostInfo.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteKill.py b/lldb/test/API/tools/lldb-server/TestGdbRemoteKill.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteKill.py
rename to lldb/test/API/tools/lldb-server/TestGdbRemoteKill.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteModuleInfo.py b/lldb/test/API/tools/lldb-server/TestGdbRemoteModuleInfo.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteModuleInfo.py
rename to lldb/test/API/tools/lldb-server/TestGdbRemoteModuleInfo.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteProcessInfo.py b/lldb/test/API/tools/lldb-server/TestGdbRemoteProcessInfo.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteProcessInfo.py
rename to lldb/test/API/tools/lldb-server/TestGdbRemoteProcessInfo.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteRegisterState.py b/lldb/test/API/tools/lldb-server/TestGdbRemoteRegisterState.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteRegisterState.py
rename to lldb/test/API/tools/lldb-server/TestGdbRemoteRegisterState.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteSingleStep.py b/lldb/test/API/tools/lldb-server/TestGdbRemoteSingleStep.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteSingleStep.py
rename to lldb/test/API/tools/lldb-server/TestGdbRemoteSingleStep.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteThreadsInStopReply.py b/lldb/test/API/tools/lldb-server/TestGdbRemoteThreadsInStopReply.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteThreadsInStopReply.py
rename to lldb/test/API/tools/lldb-server/TestGdbRemoteThreadsInStopReply.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemote_qThreadStopInfo.py b/lldb/test/API/tools/lldb-server/TestGdbRemote_qThreadStopInfo.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemote_qThreadStopInfo.py
rename to lldb/test/API/tools/lldb-server/TestGdbRemote_qThreadStopInfo.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemote_vCont.py b/lldb/test/API/tools/lldb-server/TestGdbRemote_vCont.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemote_vCont.py
rename to lldb/test/API/tools/lldb-server/TestGdbRemote_vCont.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemote_vContThreads.py b/lldb/test/API/tools/lldb-server/TestGdbRemote_vContThreads.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemote_vContThreads.py
rename to lldb/test/API/tools/lldb-server/TestGdbRemote_vContThreads.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestLldbGdbServer.py b/lldb/test/API/tools/lldb-server/TestLldbGdbServer.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestLldbGdbServer.py
rename to lldb/test/API/tools/lldb-server/TestLldbGdbServer.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/commandline/TestStubReverseConnect.py b/lldb/test/API/tools/lldb-server/commandline/TestStubReverseConnect.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/commandline/TestStubReverseConnect.py
rename to lldb/test/API/tools/lldb-server/commandline/TestStubReverseConnect.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/commandline/TestStubSetSID.py b/lldb/test/API/tools/lldb-server/commandline/TestStubSetSID.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/commandline/TestStubSetSID.py
rename to lldb/test/API/tools/lldb-server/commandline/TestStubSetSID.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/Makefile b/lldb/test/API/tools/lldb-server/inferior-crash/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/Makefile
rename to lldb/test/API/tools/lldb-server/inferior-crash/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/TestGdbRemoteAbort.py b/lldb/test/API/tools/lldb-server/inferior-crash/TestGdbRemoteAbort.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/TestGdbRemoteAbort.py
rename to lldb/test/API/tools/lldb-server/inferior-crash/TestGdbRemoteAbort.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/TestGdbRemoteSegFault.py b/lldb/test/API/tools/lldb-server/inferior-crash/TestGdbRemoteSegFault.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/TestGdbRemoteSegFault.py
rename to lldb/test/API/tools/lldb-server/inferior-crash/TestGdbRemoteSegFault.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/main.cpp b/lldb/test/API/tools/lldb-server/inferior-crash/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/main.cpp
rename to lldb/test/API/tools/lldb-server/inferior-crash/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/Makefile b/lldb/test/API/tools/lldb-server/libraries-svr4/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/Makefile
rename to lldb/test/API/tools/lldb-server/libraries-svr4/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/TestGdbRemoteLibrariesSvr4Support.py b/lldb/test/API/tools/lldb-server/libraries-svr4/TestGdbRemoteLibrariesSvr4Support.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/TestGdbRemoteLibrariesSvr4Support.py
rename to lldb/test/API/tools/lldb-server/libraries-svr4/TestGdbRemoteLibrariesSvr4Support.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/main.cpp b/lldb/test/API/tools/lldb-server/libraries-svr4/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/main.cpp
rename to lldb/test/API/tools/lldb-server/libraries-svr4/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/svr4lib_a.cpp b/lldb/test/API/tools/lldb-server/libraries-svr4/svr4lib_a.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/svr4lib_a.cpp
rename to lldb/test/API/tools/lldb-server/libraries-svr4/svr4lib_a.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/svr4lib_b_quote.cpp b/lldb/test/API/tools/lldb-server/libraries-svr4/svr4lib_b_quote.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/svr4lib_b_quote.cpp
rename to lldb/test/API/tools/lldb-server/libraries-svr4/svr4lib_b_quote.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/main.cpp b/lldb/test/API/tools/lldb-server/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/main.cpp
rename to lldb/test/API/tools/lldb-server/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/platform-process-connect/Makefile b/lldb/test/API/tools/lldb-server/platform-process-connect/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/platform-process-connect/Makefile
rename to lldb/test/API/tools/lldb-server/platform-process-connect/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/platform-process-connect/TestPlatformProcessConnect.py b/lldb/test/API/tools/lldb-server/platform-process-connect/TestPlatformProcessConnect.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/platform-process-connect/TestPlatformProcessConnect.py
rename to lldb/test/API/tools/lldb-server/platform-process-connect/TestPlatformProcessConnect.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/platform-process-connect/main.cpp b/lldb/test/API/tools/lldb-server/platform-process-connect/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/platform-process-connect/main.cpp
rename to lldb/test/API/tools/lldb-server/platform-process-connect/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/register-reading/Makefile b/lldb/test/API/tools/lldb-server/register-reading/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/register-reading/Makefile
rename to lldb/test/API/tools/lldb-server/register-reading/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/register-reading/TestGdbRemoteGPacket.py b/lldb/test/API/tools/lldb-server/register-reading/TestGdbRemoteGPacket.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/register-reading/TestGdbRemoteGPacket.py
rename to lldb/test/API/tools/lldb-server/register-reading/TestGdbRemoteGPacket.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/register-reading/main.cpp b/lldb/test/API/tools/lldb-server/register-reading/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/register-reading/main.cpp
rename to lldb/test/API/tools/lldb-server/register-reading/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/signal-filtering/Makefile b/lldb/test/API/tools/lldb-server/signal-filtering/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/signal-filtering/Makefile
rename to lldb/test/API/tools/lldb-server/signal-filtering/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/signal-filtering/TestGdbRemote_QPassSignals.py b/lldb/test/API/tools/lldb-server/signal-filtering/TestGdbRemote_QPassSignals.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/signal-filtering/TestGdbRemote_QPassSignals.py
rename to lldb/test/API/tools/lldb-server/signal-filtering/TestGdbRemote_QPassSignals.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/signal-filtering/main.cpp b/lldb/test/API/tools/lldb-server/signal-filtering/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/signal-filtering/main.cpp
rename to lldb/test/API/tools/lldb-server/signal-filtering/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/test/test_lldbgdbserverutils.py b/lldb/test/API/tools/lldb-server/test/test_lldbgdbserverutils.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/test/test_lldbgdbserverutils.py
rename to lldb/test/API/tools/lldb-server/test/test_lldbgdbserverutils.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/thread-name/Makefile b/lldb/test/API/tools/lldb-server/thread-name/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/thread-name/Makefile
rename to lldb/test/API/tools/lldb-server/thread-name/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/thread-name/TestGdbRemoteThreadName.py b/lldb/test/API/tools/lldb-server/thread-name/TestGdbRemoteThreadName.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/thread-name/TestGdbRemoteThreadName.py
rename to lldb/test/API/tools/lldb-server/thread-name/TestGdbRemoteThreadName.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/thread-name/main.cpp b/lldb/test/API/tools/lldb-server/thread-name/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-server/thread-name/main.cpp
rename to lldb/test/API/tools/lldb-server/thread-name/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/.categories b/lldb/test/API/tools/lldb-vscode/.categories
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/.categories
rename to lldb/test/API/tools/lldb-vscode/.categories

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/Makefile b/lldb/test/API/tools/lldb-vscode/attach/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/Makefile
rename to lldb/test/API/tools/lldb-vscode/attach/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/TestVSCode_attach.py b/lldb/test/API/tools/lldb-vscode/attach/TestVSCode_attach.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/TestVSCode_attach.py
rename to lldb/test/API/tools/lldb-vscode/attach/TestVSCode_attach.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/main.c b/lldb/test/API/tools/lldb-vscode/attach/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/main.c
rename to lldb/test/API/tools/lldb-vscode/attach/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/Makefile b/lldb/test/API/tools/lldb-vscode/breakpoint/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/Makefile
rename to lldb/test/API/tools/lldb-vscode/breakpoint/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setBreakpoints.py b/lldb/test/API/tools/lldb-vscode/breakpoint/TestVSCode_setBreakpoints.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setBreakpoints.py
rename to lldb/test/API/tools/lldb-vscode/breakpoint/TestVSCode_setBreakpoints.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setExceptionBreakpoints.py b/lldb/test/API/tools/lldb-vscode/breakpoint/TestVSCode_setExceptionBreakpoints.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setExceptionBreakpoints.py
rename to lldb/test/API/tools/lldb-vscode/breakpoint/TestVSCode_setExceptionBreakpoints.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setFunctionBreakpoints.py b/lldb/test/API/tools/lldb-vscode/breakpoint/TestVSCode_setFunctionBreakpoints.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setFunctionBreakpoints.py
rename to lldb/test/API/tools/lldb-vscode/breakpoint/TestVSCode_setFunctionBreakpoints.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/main.cpp b/lldb/test/API/tools/lldb-vscode/breakpoint/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/main.cpp
rename to lldb/test/API/tools/lldb-vscode/breakpoint/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/completions/Makefile b/lldb/test/API/tools/lldb-vscode/completions/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/completions/Makefile
rename to lldb/test/API/tools/lldb-vscode/completions/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/completions/TestVSCode_completions.py b/lldb/test/API/tools/lldb-vscode/completions/TestVSCode_completions.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/completions/TestVSCode_completions.py
rename to lldb/test/API/tools/lldb-vscode/completions/TestVSCode_completions.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/completions/main.cpp b/lldb/test/API/tools/lldb-vscode/completions/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/completions/main.cpp
rename to lldb/test/API/tools/lldb-vscode/completions/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/Makefile b/lldb/test/API/tools/lldb-vscode/launch/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/Makefile
rename to lldb/test/API/tools/lldb-vscode/launch/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/TestVSCode_launch.py b/lldb/test/API/tools/lldb-vscode/launch/TestVSCode_launch.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/TestVSCode_launch.py
rename to lldb/test/API/tools/lldb-vscode/launch/TestVSCode_launch.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/main.c b/lldb/test/API/tools/lldb-vscode/launch/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/main.c
rename to lldb/test/API/tools/lldb-vscode/launch/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/Makefile b/lldb/test/API/tools/lldb-vscode/stackTrace/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/Makefile
rename to lldb/test/API/tools/lldb-vscode/stackTrace/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/TestVSCode_stackTrace.py b/lldb/test/API/tools/lldb-vscode/stackTrace/TestVSCode_stackTrace.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/TestVSCode_stackTrace.py
rename to lldb/test/API/tools/lldb-vscode/stackTrace/TestVSCode_stackTrace.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/main.c b/lldb/test/API/tools/lldb-vscode/stackTrace/main.c
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/main.c
rename to lldb/test/API/tools/lldb-vscode/stackTrace/main.c

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/step/Makefile b/lldb/test/API/tools/lldb-vscode/step/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/step/Makefile
rename to lldb/test/API/tools/lldb-vscode/step/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/step/TestVSCode_step.py b/lldb/test/API/tools/lldb-vscode/step/TestVSCode_step.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/step/TestVSCode_step.py
rename to lldb/test/API/tools/lldb-vscode/step/TestVSCode_step.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/step/main.cpp b/lldb/test/API/tools/lldb-vscode/step/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/step/main.cpp
rename to lldb/test/API/tools/lldb-vscode/step/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/variables/Makefile b/lldb/test/API/tools/lldb-vscode/variables/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/variables/Makefile
rename to lldb/test/API/tools/lldb-vscode/variables/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/variables/TestVSCode_variables.py b/lldb/test/API/tools/lldb-vscode/variables/TestVSCode_variables.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/variables/TestVSCode_variables.py
rename to lldb/test/API/tools/lldb-vscode/variables/TestVSCode_variables.py

diff  --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/variables/main.cpp b/lldb/test/API/tools/lldb-vscode/variables/main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/variables/main.cpp
rename to lldb/test/API/tools/lldb-vscode/variables/main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/types/AbstractBase.py b/lldb/test/API/types/AbstractBase.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/AbstractBase.py
rename to lldb/test/API/types/AbstractBase.py

diff  --git a/lldb/packages/Python/lldbsuite/test/types/HideTestFailures.py b/lldb/test/API/types/HideTestFailures.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/HideTestFailures.py
rename to lldb/test/API/types/HideTestFailures.py

diff  --git a/lldb/packages/Python/lldbsuite/test/types/Makefile b/lldb/test/API/types/Makefile
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/Makefile
rename to lldb/test/API/types/Makefile

diff  --git a/lldb/packages/Python/lldbsuite/test/types/TestCharType.py b/lldb/test/API/types/TestCharType.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/TestCharType.py
rename to lldb/test/API/types/TestCharType.py

diff  --git a/lldb/packages/Python/lldbsuite/test/types/TestCharTypeExpr.py b/lldb/test/API/types/TestCharTypeExpr.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/TestCharTypeExpr.py
rename to lldb/test/API/types/TestCharTypeExpr.py

diff  --git a/lldb/packages/Python/lldbsuite/test/types/TestDoubleTypes.py b/lldb/test/API/types/TestDoubleTypes.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/TestDoubleTypes.py
rename to lldb/test/API/types/TestDoubleTypes.py

diff  --git a/lldb/packages/Python/lldbsuite/test/types/TestDoubleTypesExpr.py b/lldb/test/API/types/TestDoubleTypesExpr.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/TestDoubleTypesExpr.py
rename to lldb/test/API/types/TestDoubleTypesExpr.py

diff  --git a/lldb/packages/Python/lldbsuite/test/types/TestFloatTypes.py b/lldb/test/API/types/TestFloatTypes.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/TestFloatTypes.py
rename to lldb/test/API/types/TestFloatTypes.py

diff  --git a/lldb/packages/Python/lldbsuite/test/types/TestFloatTypesExpr.py b/lldb/test/API/types/TestFloatTypesExpr.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/TestFloatTypesExpr.py
rename to lldb/test/API/types/TestFloatTypesExpr.py

diff  --git a/lldb/packages/Python/lldbsuite/test/types/TestIntegerType.py b/lldb/test/API/types/TestIntegerType.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/TestIntegerType.py
rename to lldb/test/API/types/TestIntegerType.py

diff  --git a/lldb/packages/Python/lldbsuite/test/types/TestIntegerTypeExpr.py b/lldb/test/API/types/TestIntegerTypeExpr.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/TestIntegerTypeExpr.py
rename to lldb/test/API/types/TestIntegerTypeExpr.py

diff  --git a/lldb/packages/Python/lldbsuite/test/types/TestLongTypes.py b/lldb/test/API/types/TestLongTypes.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/TestLongTypes.py
rename to lldb/test/API/types/TestLongTypes.py

diff  --git a/lldb/packages/Python/lldbsuite/test/types/TestLongTypesExpr.py b/lldb/test/API/types/TestLongTypesExpr.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/TestLongTypesExpr.py
rename to lldb/test/API/types/TestLongTypesExpr.py

diff  --git a/lldb/packages/Python/lldbsuite/test/types/TestRecursiveTypes.py b/lldb/test/API/types/TestRecursiveTypes.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/TestRecursiveTypes.py
rename to lldb/test/API/types/TestRecursiveTypes.py

diff  --git a/lldb/packages/Python/lldbsuite/test/types/TestShortType.py b/lldb/test/API/types/TestShortType.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/TestShortType.py
rename to lldb/test/API/types/TestShortType.py

diff  --git a/lldb/packages/Python/lldbsuite/test/types/TestShortTypeExpr.py b/lldb/test/API/types/TestShortTypeExpr.py
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/TestShortTypeExpr.py
rename to lldb/test/API/types/TestShortTypeExpr.py

diff  --git a/lldb/packages/Python/lldbsuite/test/types/basic_type.cpp b/lldb/test/API/types/basic_type.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/basic_type.cpp
rename to lldb/test/API/types/basic_type.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/types/char.cpp b/lldb/test/API/types/char.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/char.cpp
rename to lldb/test/API/types/char.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/types/double.cpp b/lldb/test/API/types/double.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/double.cpp
rename to lldb/test/API/types/double.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/types/float.cpp b/lldb/test/API/types/float.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/float.cpp
rename to lldb/test/API/types/float.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/types/int.cpp b/lldb/test/API/types/int.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/int.cpp
rename to lldb/test/API/types/int.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/types/long.cpp b/lldb/test/API/types/long.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/long.cpp
rename to lldb/test/API/types/long.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/types/long_long.cpp b/lldb/test/API/types/long_long.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/long_long.cpp
rename to lldb/test/API/types/long_long.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/types/recursive_type_1.cpp b/lldb/test/API/types/recursive_type_1.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/recursive_type_1.cpp
rename to lldb/test/API/types/recursive_type_1.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/types/recursive_type_2.cpp b/lldb/test/API/types/recursive_type_2.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/recursive_type_2.cpp
rename to lldb/test/API/types/recursive_type_2.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/types/recursive_type_main.cpp b/lldb/test/API/types/recursive_type_main.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/recursive_type_main.cpp
rename to lldb/test/API/types/recursive_type_main.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/types/short.cpp b/lldb/test/API/types/short.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/short.cpp
rename to lldb/test/API/types/short.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/types/unsigned_char.cpp b/lldb/test/API/types/unsigned_char.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/unsigned_char.cpp
rename to lldb/test/API/types/unsigned_char.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/types/unsigned_int.cpp b/lldb/test/API/types/unsigned_int.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/unsigned_int.cpp
rename to lldb/test/API/types/unsigned_int.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/types/unsigned_long.cpp b/lldb/test/API/types/unsigned_long.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/unsigned_long.cpp
rename to lldb/test/API/types/unsigned_long.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/types/unsigned_long_long.cpp b/lldb/test/API/types/unsigned_long_long.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/unsigned_long_long.cpp
rename to lldb/test/API/types/unsigned_long_long.cpp

diff  --git a/lldb/packages/Python/lldbsuite/test/types/unsigned_short.cpp b/lldb/test/API/types/unsigned_short.cpp
similarity index 100%
rename from lldb/packages/Python/lldbsuite/test/types/unsigned_short.cpp
rename to lldb/test/API/types/unsigned_short.cpp


        


More information about the lldb-commits mailing list