diff options
Diffstat (limited to 'packages/Python/lldbsuite/test/tools/lldb-mi/interpreter')
| -rw-r--r-- | packages/Python/lldbsuite/test/tools/lldb-mi/interpreter/TestMiCliSupport.py | 8 | ||||
| -rw-r--r-- | packages/Python/lldbsuite/test/tools/lldb-mi/interpreter/TestMiInterpreterExec.py | 8 | 
2 files changed, 16 insertions, 0 deletions
| diff --git a/packages/Python/lldbsuite/test/tools/lldb-mi/interpreter/TestMiCliSupport.py b/packages/Python/lldbsuite/test/tools/lldb-mi/interpreter/TestMiCliSupport.py index 24b3881c1be1..7a28f297a1c8 100644 --- a/packages/Python/lldbsuite/test/tools/lldb-mi/interpreter/TestMiCliSupport.py +++ b/packages/Python/lldbsuite/test/tools/lldb-mi/interpreter/TestMiCliSupport.py @@ -17,6 +17,7 @@ class MiCliSupportTestCase(lldbmi_testcase.MiTestCaseBase):      @skipIfWindows  # llvm.org/pr24452: Get lldb-mi tests working on Windows      @skipIfFreeBSD  # llvm.org/pr22411: Failure presumably due to known thread races +    @skipIfRemote   # We do not currently support remote debugging via the MI.      def test_lldbmi_target_create(self):          """Test that 'lldb-mi --interpreter' can create target by 'target create' command.""" @@ -36,6 +37,7 @@ class MiCliSupportTestCase(lldbmi_testcase.MiTestCaseBase):      @skipIfWindows  # llvm.org/pr24452: Get lldb-mi tests working on Windows      @skipIfFreeBSD  # llvm.org/pr22411: Failure presumably due to known thread races      @skipIfLinux  # llvm.org/pr22841: lldb-mi tests fail on all Linux buildbots +    @skipIfRemote   # We do not currently support remote debugging via the MI.      def test_lldbmi_breakpoint_set(self):          """Test that 'lldb-mi --interpreter' can set breakpoint by 'breakpoint set' command.""" @@ -59,6 +61,7 @@ class MiCliSupportTestCase(lldbmi_testcase.MiTestCaseBase):      @skipIfWindows  # llvm.org/pr24452: Get lldb-mi tests working on Windows      @skipIfFreeBSD  # llvm.org/pr22411: Failure presumably due to known thread races      @skipIfLinux  # llvm.org/pr22841: lldb-mi tests fail on all Linux buildbots +    @skipIfRemote   # We do not currently support remote debugging via the MI.      def test_lldbmi_settings_set_target_run_args_before(self):          """Test that 'lldb-mi --interpreter' can set target arguments by 'setting set target.run-args' command before than target was created.""" @@ -84,6 +87,7 @@ class MiCliSupportTestCase(lldbmi_testcase.MiTestCaseBase):      @skipIfWindows  # llvm.org/pr24452: Get lldb-mi tests working on Windows      @skipIfFreeBSD  # llvm.org/pr22411: Failure presumably due to known thread races      @skipIfLinux  # llvm.org/pr22841: lldb-mi tests fail on all Linux buildbots +    @skipIfRemote   # We do not currently support remote debugging via the MI.      def test_lldbmi_settings_set_target_run_args_after(self):          """Test that 'lldb-mi --interpreter' can set target arguments by 'setting set target.run-args' command after than target was created.""" @@ -109,6 +113,7 @@ class MiCliSupportTestCase(lldbmi_testcase.MiTestCaseBase):      @skipIfWindows  # llvm.org/pr24452: Get lldb-mi tests working on Windows      @skipIfFreeBSD  # llvm.org/pr22411: Failure presumably due to known thread races      @skipIfLinux  # llvm.org/pr22841: lldb-mi tests fail on all Linux buildbots +    @skipIfRemote   # We do not currently support remote debugging via the MI.      def test_lldbmi_process_launch(self):          """Test that 'lldb-mi --interpreter' can launch process by "process launch" command.""" @@ -132,6 +137,7 @@ class MiCliSupportTestCase(lldbmi_testcase.MiTestCaseBase):      @skipIfWindows  # llvm.org/pr24452: Get lldb-mi tests working on Windows      @skipIfFreeBSD  # llvm.org/pr22411: Failure presumably due to known thread races      @skipIfLinux  # llvm.org/pr22841: lldb-mi tests fail on all Linux buildbots +    @skipIfRemote   # We do not currently support remote debugging via the MI.      def test_lldbmi_thread_step_in(self):          """Test that 'lldb-mi --interpreter' can step in by "thread step-in" command.""" @@ -164,6 +170,7 @@ class MiCliSupportTestCase(lldbmi_testcase.MiTestCaseBase):      @skipIfWindows  # llvm.org/pr24452: Get lldb-mi tests working on Windows      @skipIfFreeBSD  # llvm.org/pr22411: Failure presumably due to known thread races      @skipIfLinux  # llvm.org/pr22841: lldb-mi tests fail on all Linux buildbots +    @skipIfRemote   # We do not currently support remote debugging via the MI.      def test_lldbmi_thread_step_over(self):          """Test that 'lldb-mi --interpreter' can step over by "thread step-over" command.""" @@ -189,6 +196,7 @@ class MiCliSupportTestCase(lldbmi_testcase.MiTestCaseBase):      @skipIfWindows  # llvm.org/pr24452: Get lldb-mi tests working on Windows      @skipIfFreeBSD  # llvm.org/pr22411: Failure presumably due to known thread races      @skipIfLinux  # llvm.org/pr22841: lldb-mi tests fail on all Linux buildbots +    @skipIfRemote   # We do not currently support remote debugging via the MI.      def test_lldbmi_thread_continue(self):          """Test that 'lldb-mi --interpreter' can continue execution by "thread continue" command.""" diff --git a/packages/Python/lldbsuite/test/tools/lldb-mi/interpreter/TestMiInterpreterExec.py b/packages/Python/lldbsuite/test/tools/lldb-mi/interpreter/TestMiInterpreterExec.py index 23da825d591b..2f207928db7d 100644 --- a/packages/Python/lldbsuite/test/tools/lldb-mi/interpreter/TestMiInterpreterExec.py +++ b/packages/Python/lldbsuite/test/tools/lldb-mi/interpreter/TestMiInterpreterExec.py @@ -17,6 +17,7 @@ class MiInterpreterExecTestCase(lldbmi_testcase.MiTestCaseBase):      @skipIfWindows  # llvm.org/pr24452: Get lldb-mi tests working on Windows      @skipIfFreeBSD  # llvm.org/pr22411: Failure presumably due to known thread races +    @skipIfRemote   # We do not currently support remote debugging via the MI.      def test_lldbmi_target_create(self):          """Test that 'lldb-mi --interpreter' can create target by 'target create' command.""" @@ -37,6 +38,7 @@ class MiInterpreterExecTestCase(lldbmi_testcase.MiTestCaseBase):      @skipIfWindows  # llvm.org/pr24452: Get lldb-mi tests working on Windows      @skipIfFreeBSD  # llvm.org/pr22411: Failure presumably due to known thread races +    @skipIfRemote   # We do not currently support remote debugging via the MI.      def test_lldbmi_breakpoint_set(self):          """Test that 'lldb-mi --interpreter' can set breakpoint by 'breakpoint set' command.""" @@ -60,6 +62,7 @@ class MiInterpreterExecTestCase(lldbmi_testcase.MiTestCaseBase):      @skipIfWindows  # llvm.org/pr24452: Get lldb-mi tests working on Windows      @skipIfFreeBSD  # llvm.org/pr22411: Failure presumably due to known thread races      @expectedFlakeyLinux(bugnumber="llvm.org/pr25470") +    @skipIfRemote   # We do not currently support remote debugging via the MI.      def test_lldbmi_settings_set_target_run_args_before(self):          """Test that 'lldb-mi --interpreter' can set target arguments by 'setting set target.run-args' command before than target was created.""" @@ -95,6 +98,7 @@ class MiInterpreterExecTestCase(lldbmi_testcase.MiTestCaseBase):      @expectedFailureAll(          oslist=["linux"],          bugnumber="Failing in ~9/600 dosep runs (build 3120-3122)") +    @skipIfRemote   # We do not currently support remote debugging via the MI.      def test_lldbmi_settings_set_target_run_args_after(self):          """Test that 'lldb-mi --interpreter' can set target arguments by 'setting set target.run-args' command after than target was created.""" @@ -138,6 +142,7 @@ class MiInterpreterExecTestCase(lldbmi_testcase.MiTestCaseBase):      @skipIfWindows  # llvm.org/pr24452: Get lldb-mi tests working on Windows      @skipIfFreeBSD  # llvm.org/pr22411: Failure presumably due to known thread races +    @skipIfRemote   # We do not currently support remote debugging via the MI.      def test_lldbmi_process_launch(self):          """Test that 'lldb-mi --interpreter' can launch process by "process launch" command.""" @@ -160,6 +165,7 @@ class MiInterpreterExecTestCase(lldbmi_testcase.MiTestCaseBase):      @skipIfWindows  # llvm.org/pr24452: Get lldb-mi tests working on Windows      @skipIfFreeBSD  # llvm.org/pr22411: Failure presumably due to known thread races +    @skipIfRemote   # We do not currently support remote debugging via the MI.      def test_lldbmi_thread_step_in(self):          """Test that 'lldb-mi --interpreter' can step in by "thread step-in" command.""" @@ -191,6 +197,7 @@ class MiInterpreterExecTestCase(lldbmi_testcase.MiTestCaseBase):      @skipIfWindows  # llvm.org/pr24452: Get lldb-mi tests working on Windows      @skipIfFreeBSD  # llvm.org/pr22411: Failure presumably due to known thread races +    @skipIfRemote   # We do not currently support remote debugging via the MI.      def test_lldbmi_thread_step_over(self):          """Test that 'lldb-mi --interpreter' can step over by "thread step-over" command.""" @@ -216,6 +223,7 @@ class MiInterpreterExecTestCase(lldbmi_testcase.MiTestCaseBase):      @skipIfWindows  # llvm.org/pr24452: Get lldb-mi tests working on Windows      @skipIfFreeBSD  # llvm.org/pr22411: Failure presumably due to known thread races      @expectedFlakeyLinux("llvm.org/pr25470") +    @skipIfRemote   # We do not currently support remote debugging via the MI.      def test_lldbmi_thread_continue(self):          """Test that 'lldb-mi --interpreter' can continue execution by "thread continue" command.""" | 
