Refactor lldb-mi tests
authorIlia K <ki.stfu@gmail.com>
Fri, 20 Feb 2015 16:34:33 +0000 (16:34 +0000)
committerIlia K <ki.stfu@gmail.com>
Fri, 20 Feb 2015 16:34:33 +0000 (16:34 +0000)
commit4e892f9c6c220d7cb5d2660b66e79128cbc079e2
tree66d4b61498376001bfc8e1be1fed6c09e75a11fa
parentf4b269bdf0147402d1aee7d68db57a09640d00f6
Refactor lldb-mi tests

Summary:
This patch includes following changes:
* split lldb-mi tests into separate folders. It will make our life simpler because we can modify a test program of certain test and don't worry about other tests
* a bit refactoring
* fix comments
* improve some tests

Reviewers: emaste, clayborg, abidh

Reviewed By: clayborg, abidh

Subscribers: clayborg, lldb-commits, emaste, abidh

Differential Revision: http://reviews.llvm.org/D7762

llvm-svn: 230022
36 files changed:
lldb/test/tools/lldb-mi/Makefile
lldb/test/tools/lldb-mi/TestMiBreakpoint.py [deleted file]
lldb/test/tools/lldb-mi/TestMiExit.py
lldb/test/tools/lldb-mi/TestMiFile.py [moved from lldb/test/tools/lldb-mi/TestMiLaunch.py with 66% similarity]
lldb/test/tools/lldb-mi/TestMiInterpreterExec.py
lldb/test/tools/lldb-mi/TestMiInterrupt.py [deleted file]
lldb/test/tools/lldb-mi/TestMiPrompt.py [new file with mode: 0644]
lldb/test/tools/lldb-mi/TestMiSyntax.py
lldb/test/tools/lldb-mi/a.c [deleted file]
lldb/test/tools/lldb-mi/b.c [deleted file]
lldb/test/tools/lldb-mi/breakpoint/Makefile [new file with mode: 0644]
lldb/test/tools/lldb-mi/breakpoint/TestMiBreak.py [new file with mode: 0644]
lldb/test/tools/lldb-mi/breakpoint/main.cpp [new file with mode: 0644]
lldb/test/tools/lldb-mi/control/Makefile [new file with mode: 0644]
lldb/test/tools/lldb-mi/control/TestMiExec.py [moved from lldb/test/tools/lldb-mi/TestMiExec.py with 84% similarity]
lldb/test/tools/lldb-mi/control/main.cpp [new file with mode: 0644]
lldb/test/tools/lldb-mi/data/Makefile [new file with mode: 0644]
lldb/test/tools/lldb-mi/data/TestMiData.py [moved from lldb/test/tools/lldb-mi/TestMiData.py with 82% similarity]
lldb/test/tools/lldb-mi/data/main.cpp [new file with mode: 0644]
lldb/test/tools/lldb-mi/lldbmi_testcase.py
lldb/test/tools/lldb-mi/locals.c [deleted file]
lldb/test/tools/lldb-mi/loop.c [deleted file]
lldb/test/tools/lldb-mi/main.c [deleted file]
lldb/test/tools/lldb-mi/main.cpp [new file with mode: 0644]
lldb/test/tools/lldb-mi/signal/Makefile [new file with mode: 0644]
lldb/test/tools/lldb-mi/signal/TestMiSignal.py [moved from lldb/test/tools/lldb-mi/TestMiNotification.py with 76% similarity]
lldb/test/tools/lldb-mi/signal/main.cpp [new file with mode: 0644]
lldb/test/tools/lldb-mi/stack/Makefile [new file with mode: 0644]
lldb/test/tools/lldb-mi/stack/TestMiStack.py [moved from lldb/test/tools/lldb-mi/TestMiStack.py with 89% similarity]
lldb/test/tools/lldb-mi/stack/main.cpp [new file with mode: 0644]
lldb/test/tools/lldb-mi/symbol/Makefile [new file with mode: 0644]
lldb/test/tools/lldb-mi/symbol/TestMiSymbol.py [moved from lldb/test/tools/lldb-mi/TestMiSymbol.py with 67% similarity]
lldb/test/tools/lldb-mi/symbol/main.cpp [new file with mode: 0644]
lldb/test/tools/lldb-mi/variable/Makefile [new file with mode: 0644]
lldb/test/tools/lldb-mi/variable/TestMiVar.py [moved from lldb/test/tools/lldb-mi/TestMiEvaluate.py with 73% similarity]
lldb/test/tools/lldb-mi/variable/main.cpp [new file with mode: 0644]