diff options
author | Alexander Polyakov <polyakov.alx@gmail.com> | 2018-07-02 23:54:06 +0000 |
---|---|---|
committer | Alexander Polyakov <polyakov.alx@gmail.com> | 2018-07-02 23:54:06 +0000 |
commit | fc018b071b9ef9810089fc3ca27a4a61c9300d38 (patch) | |
tree | 5376e6a057bf31770582aef1923a91bbfaf112d2 /lldb/packages/Python/lldbsuite/test/tools/lldb-mi/control/TestMiExec.py | |
parent | d4a1bd7d87b8f7e54a028aa6f38c2bbd34a4bd76 (diff) | |
download | bcm5719-llvm-fc018b071b9ef9810089fc3ca27a4a61c9300d38.tar.gz bcm5719-llvm-fc018b071b9ef9810089fc3ca27a4a61c9300d38.zip |
[lldb-mi] Re-implement a few MI commands.
Summary: This patch updates exec-next-instruction, exec-step-instruction,
exec-finish, exec-interrupt commands to use SB API instead of HandleCommand.
Reviewers: aprantl, clayborg
Reviewed By: aprantl
Subscribers: ki.stfu, lldb-commits
Differential Revision: https://reviews.llvm.org/D48520
llvm-svn: 336155
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/tools/lldb-mi/control/TestMiExec.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/tools/lldb-mi/control/TestMiExec.py | 348 |
1 files changed, 0 insertions, 348 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/control/TestMiExec.py b/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/control/TestMiExec.py index fb1e10473fe..00c52dbe97a 100644 --- a/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/control/TestMiExec.py +++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/control/TestMiExec.py @@ -139,351 +139,3 @@ class MiExecTestCase(lldbmi_testcase.MiTestCaseBase): # Check argc to see if arg passed self.runCmd("-data-evaluate-expression argc") self.expect("\^done,value=\"1\"") - - @skipIfRemote # We do not currently support remote debugging via the MI. - @skipIfWindows # llvm.org/pr24452: Get lldb-mi tests working on Windows - @skipIfFreeBSD # llvm.org/pr22411: Failure presumably due to known thread races - def test_lldbmi_exec_next(self): - """Test that 'lldb-mi --interpreter' works for stepping.""" - - self.spawnLldbMi(args=None) - - # Load executable - self.runCmd("-file-exec-and-symbols %s" % self.myexe) - self.expect("\^done") - - # Run to main - self.runCmd("-break-insert -f main") - self.expect("\^done,bkpt={number=\"1\"") - self.runCmd("-exec-run") - self.expect("\^running") - self.expect("\*stopped,reason=\"breakpoint-hit\"") - - # Warning: the following is sensitive to the lines in the source - - # Test -exec-next - self.runCmd("-exec-next --thread 1 --frame 0") - self.expect("\^running") - self.expect( - "\*stopped,reason=\"end-stepping-range\".+?main\.cpp\",line=\"29\"") - - # Test that --thread is optional - self.runCmd("-exec-next --frame 0") - self.expect("\^running") - self.expect( - "\*stopped,reason=\"end-stepping-range\".+?main\.cpp\",line=\"30\"") - - # Test that --frame is optional - self.runCmd("-exec-next --thread 1") - self.expect("\^running") - self.expect( - "\*stopped,reason=\"end-stepping-range\".+?main\.cpp\",line=\"31\"") - - # Test that both --thread and --frame are optional - self.runCmd("-exec-next") - self.expect("\^running") - self.expect( - "\*stopped,reason=\"end-stepping-range\".+?main\.cpp\",line=\"32\"") - - # Test that an invalid --thread is handled - self.runCmd("-exec-next --thread 0") - self.expect("\^error,msg=\"Command 'exec-next'. Thread ID invalid") - self.runCmd("-exec-next --thread 10") - self.expect("\^error,msg=\"Command 'exec-next'. Thread ID invalid") - - # Test that an invalid --frame is handled - # FIXME: no error is returned - self.runCmd("-exec-next --frame 10") - #self.expect("\^error: Frame index 10 is out of range") - - @skipIfRemote # We do not currently support remote debugging via the MI. - @skipIfWindows # llvm.org/pr24452: Get lldb-mi tests working on Windows - @skipIfFreeBSD # llvm.org/pr22411: Failure presumably due to known thread races - def test_lldbmi_exec_next_instruction(self): - """Test that 'lldb-mi --interpreter' works for instruction stepping.""" - - self.spawnLldbMi(args=None) - - # Load executable - self.runCmd("-file-exec-and-symbols %s" % self.myexe) - self.expect("\^done") - - # Run to main - self.runCmd("-break-insert -f main") - self.expect("\^done,bkpt={number=\"1\"") - self.runCmd("-exec-run") - self.expect("\^running") - self.expect("\*stopped,reason=\"breakpoint-hit\"") - - # Warning: the following is sensitive to the lines in the - # source and optimizations - - # Test -exec-next-instruction - self.runCmd("-exec-next-instruction --thread 1 --frame 0") - self.expect("\^running") - self.expect( - "\*stopped,reason=\"end-stepping-range\".+?main\.cpp\",line=\"28\"") - - # Test that --thread is optional - self.runCmd("-exec-next-instruction --frame 0") - self.expect("\^running") - # Depending on compiler, it can stop at different line - self.expect( - "\*stopped,reason=\"end-stepping-range\".+?main\.cpp\",line=\"(28|29)\"") - - # Test that --frame is optional - self.runCmd("-exec-next-instruction --thread 1") - self.expect("\^running") - # Depending on compiler, it can stop at different line - self.expect( - "\*stopped,reason=\"end-stepping-range\".+?main\.cpp\",line=\"(28|29|30)\"") - - # Test that both --thread and --frame are optional - self.runCmd("-exec-next-instruction") - self.expect("\^running") - # Depending on compiler, it can stop at different line - self.expect( - "\*stopped,reason=\"end-stepping-range\".+?main\.cpp\",line=\"(28|29|30|31)\"") - - # Test that an invalid --thread is handled - self.runCmd("-exec-next-instruction --thread 0") - self.expect("\^error,message=\"error: Thread index 0 is out of range") - self.runCmd("-exec-next-instruction --thread 10") - self.expect("\^error,message=\"error: Thread index 10 is out of range") - - # Test that an invalid --frame is handled - # FIXME: no error is returned - self.runCmd("-exec-next-instruction --frame 10") - #self.expect("\^error: Frame index 10 is out of range") - - @skipIfRemote # We do not currently support remote debugging via the MI. - @skipIfWindows # llvm.org/pr24452: Get lldb-mi tests working on Windows - @skipIfFreeBSD # llvm.org/pr22411: Failure presumably due to known thread races - def test_lldbmi_exec_step(self): - """Test that 'lldb-mi --interpreter' works for stepping into.""" - - self.spawnLldbMi(args=None) - - # Load executable - self.runCmd("-file-exec-and-symbols %s" % self.myexe) - self.expect("\^done") - - # Run to main - self.runCmd("-break-insert -f main") - self.expect("\^done,bkpt={number=\"1\"") - self.runCmd("-exec-run") - self.expect("\^running") - self.expect("\*stopped,reason=\"breakpoint-hit\"") - - # Warning: the following is sensitive to the lines in the source - - # Test that -exec-step steps into (or not) printf depending on debug info - # Note that message is different in Darwin and Linux: - # Darwin: "*stopped,reason=\"end-stepping-range\",frame={addr=\"0x[0-9a-f]+\",func=\"main\",args=[{name=\"argc\",value=\"1\"},{name=\"argv\",value="0x[0-9a-f]+\"}],file=\"main.cpp\",fullname=\".+main.cpp\",line=\"\d\"},thread-id=\"1\",stopped-threads=\"all\" - # Linux: - # "*stopped,reason=\"end-stepping-range\",frame={addr="0x[0-9a-f]+\",func=\"__printf\",args=[{name=\"format\",value=\"0x[0-9a-f]+\"}],file=\"printf.c\",fullname=\".+printf.c\",line="\d+"},thread-id=\"1\",stopped-threads=\"all\" - self.runCmd("-exec-step --thread 1 --frame 0") - self.expect("\^running") - it = self.expect(["\*stopped,reason=\"end-stepping-range\".+?func=\"main\"", - "\*stopped,reason=\"end-stepping-range\".+?func=\"(?!main).+?\""]) - # Exit from printf if needed - if it == 1: - self.runCmd("-exec-finish") - self.expect("\^running") - self.expect( - "\*stopped,reason=\"end-stepping-range\".+?func=\"main\"") - - # Test that -exec-step steps into g_MyFunction and back out - # (and that --thread is optional) - self.runCmd("-exec-step --frame 0") - self.expect("\^running") - self.expect( - "\*stopped,reason=\"end-stepping-range\".+?func=\"g_MyFunction.*?\"") - # Use -exec-finish here to make sure that control reaches the caller. - # -exec-step can keep us in the g_MyFunction for gcc - self.runCmd("-exec-finish --frame 0") - self.expect("\^running") - it = self.expect(["\*stopped,reason=\"end-stepping-range\".+?main\.cpp\",line=\"30\"", - "\*stopped,reason=\"end-stepping-range\".+?main\.cpp\",line=\"29\""]) - - if it == 1: - # Call to s_MyFunction may not follow immediately after g_MyFunction. - # There might be some instructions in between to restore caller-saved registers. - # We need to get past these instructions with a next to reach call to s_MyFunction. - self.runCmd("-exec-next --thread 1") - self.expect("\^running") - self.expect("\*stopped,reason=\"end-stepping-range\".+?main\.cpp\",line=\"30\"") - - # Test that -exec-step steps into s_MyFunction - # (and that --frame is optional) - self.runCmd("-exec-step --thread 1") - self.expect("\^running") - self.expect( - "\*stopped,reason=\"end-stepping-range\".+?func=\".*?s_MyFunction.*?\"") - - # Test that -exec-step steps into g_MyFunction from inside - # s_MyFunction (and that both --thread and --frame are optional) - self.runCmd("-exec-step") - self.expect("\^running") - self.expect( - "\*stopped,reason=\"end-stepping-range\".+?func=\"g_MyFunction.*?\"") - - # Test that an invalid --thread is handled - self.runCmd("-exec-step --thread 0") - self.expect("\^error,msg=\"Command 'exec-step'. Thread ID invalid") - self.runCmd("-exec-step --thread 10") - self.expect("\^error,msg=\"Command 'exec-step'. Thread ID invalid") - - # Test that an invalid --frame is handled - # FIXME: no error is returned - self.runCmd("-exec-step --frame 10") - #self.expect("\^error: Frame index 10 is out of range") - - @skipIfRemote # We do not currently support remote debugging via the MI. - @skipIfWindows # llvm.org/pr24452: Get lldb-mi tests working on Windows - @skipIfFreeBSD # llvm.org/pr22411: Failure presumably due to known thread races - def test_lldbmi_exec_step_instruction(self): - """Test that 'lldb-mi --interpreter' works for instruction stepping into.""" - - self.spawnLldbMi(args=None) - - # Load executable - self.runCmd("-file-exec-and-symbols %s" % self.myexe) - self.expect("\^done") - - # Warning: the following is sensitive to the lines in the - # source and optimizations - - # Run to main - self.runCmd("-break-insert -f main") - self.expect("\^done,bkpt={number=\"1\"") - self.runCmd("-exec-run") - self.expect("\^running") - self.expect("\*stopped,reason=\"breakpoint-hit\"") - - # Test that -exec-next steps over printf - self.runCmd("-exec-next --thread 1 --frame 0") - self.expect("\^running") - self.expect( - "\*stopped,reason=\"end-stepping-range\".+?main\.cpp\",line=\"29\"") - - # Test that -exec-step-instruction steps over non branching - # instruction - self.runCmd("-exec-step-instruction --thread 1 --frame 0") - self.expect("\^running") - self.expect("\*stopped,reason=\"end-stepping-range\".+?main\.cpp\"") - - # Test that -exec-step-instruction steps into g_MyFunction - # instruction (and that --thread is optional) - - # In case of MIPS, there might be more than one instruction - # before actual call instruction (like load, move and call instructions). - # The -exec-step-instruction would step one assembly instruction. - # Thus we may not enter into g_MyFunction function. The -exec-step would definitely - # step into the function. - - if self.isMIPS(): - self.runCmd("-exec-step --frame 0") - else: - self.runCmd("-exec-step-instruction --frame 0") - self.expect("\^running") - self.expect( - "\*stopped,reason=\"end-stepping-range\".+?func=\"g_MyFunction.*?\"") - - # Test that -exec-step-instruction steps over non branching - # (and that --frame is optional) - self.runCmd("-exec-step-instruction --thread 1") - self.expect("\^running") - self.expect( - "\*stopped,reason=\"end-stepping-range\".+?func=\"g_MyFunction.*?\"") - - # Test that -exec-step-instruction steps into g_MyFunction - # (and that both --thread and --frame are optional) - self.runCmd("-exec-step-instruction") - self.expect("\^running") - self.expect( - "\*stopped,reason=\"end-stepping-range\".+?func=\"g_MyFunction.*?\"") - - # Test that an invalid --thread is handled - self.runCmd("-exec-step-instruction --thread 0") - self.expect("\^error,message=\"error: Thread index 0 is out of range") - self.runCmd("-exec-step-instruction --thread 10") - self.expect("\^error,message=\"error: Thread index 10 is out of range") - - # Test that an invalid --frame is handled - # FIXME: no error is returned - self.runCmd("-exec-step-instruction --frame 10") - #self.expect("\^error: Frame index 10 is out of range") - - @skipIfRemote # We do not currently support remote debugging via the MI. - @skipIfWindows # llvm.org/pr24452: Get lldb-mi tests working on Windows - @skipIfFreeBSD # llvm.org/pr22411: Failure presumably due to known thread races - def test_lldbmi_exec_finish(self): - """Test that 'lldb-mi --interpreter' works for -exec-finish.""" - - self.spawnLldbMi(args=None) - - # Load executable - self.runCmd("-file-exec-and-symbols %s" % self.myexe) - self.expect("\^done") - - # Set BP at g_MyFunction and run to BP - self.runCmd("-break-insert -f g_MyFunction") - self.expect("\^done,bkpt={number=\"1\"") - self.runCmd("-exec-run") - self.expect("\^running") - self.expect("\*stopped,reason=\"breakpoint-hit\"") - - # Test that -exec-finish returns from g_MyFunction - self.runCmd("-exec-finish --thread 1 --frame 0") - self.expect("\^running") - self.expect("\*stopped,reason=\"end-stepping-range\".+?func=\"main\"") - - # Run to BP inside s_MyFunction call - self.runCmd("-break-insert s_MyFunction") - self.expect("\^done,bkpt={number=\"2\"") - self.runCmd("-exec-continue") - self.expect("\^running") - self.expect("\*stopped,reason=\"breakpoint-hit\"") - - # Test that -exec-finish hits BP at g_MyFunction call inside - # s_MyFunction (and that --thread is optional) - self.runCmd("-exec-finish --frame 0") - self.expect("\^running") - self.expect("\*stopped,reason=\"breakpoint-hit\"") - - # Test that -exec-finish returns from g_MyFunction call inside - # s_MyFunction (and that --frame is optional) - self.runCmd("-exec-finish --thread 1") - self.expect("\^running") - self.expect( - "\*stopped,reason=\"end-stepping-range\".+?func=\".*?s_MyFunction.*?\"") - - # Test that -exec-finish returns from s_MyFunction - # (and that both --thread and --frame are optional) - self.runCmd("-exec-finish") - self.expect("\^running") - self.expect("\*stopped,reason=\"end-stepping-range\".+?func=\"main\"") - - # Test that an invalid --thread is handled - self.runCmd("-exec-finish --thread 0") - self.expect("\^error,message=\"error: Thread index 0 is out of range") - self.runCmd("-exec-finish --thread 10") - self.expect("\^error,message=\"error: Thread index 10 is out of range") - - # Test that an invalid --frame is handled - # FIXME: no error is returned - #self.runCmd("-exec-finish --frame 10") - #self.expect("\^error: Frame index 10 is out of range") - - # Set BP at printf and run to BP - self.runCmd("-break-insert -f printf") - self.expect("\^done,bkpt={number=\"3\"") - self.runCmd("-exec-continue") - self.expect("\^running") - self.expect("\*stopped,reason=\"breakpoint-hit\"") - - # Test that -exec-finish returns from printf - self.runCmd("-exec-finish --thread 1 --frame 0") - self.expect("\^running") - self.expect("\*stopped,reason=\"end-stepping-range\".+?func=\"main\"") |