diff options
| -rw-r--r-- | lldb/test/functionalities/thread/exit_during_step/TestExitDuringStep.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/test/functionalities/thread/exit_during_step/TestExitDuringStep.py b/lldb/test/functionalities/thread/exit_during_step/TestExitDuringStep.py index 42337fbc765..676d42ec036 100644 --- a/lldb/test/functionalities/thread/exit_during_step/TestExitDuringStep.py +++ b/lldb/test/functionalities/thread/exit_during_step/TestExitDuringStep.py @@ -49,18 +49,21 @@ class ExitDuringStepTestCase(TestBase): self.buildDsym(dictionary=self.getBuildFlags()) self.exit_during_step_in_test() + @skipIfFreeBSD # llvm.org/pr21411: test is hanging @dwarf_test def test_with_dwarf(self): """Test thread exit during step handling.""" self.buildDwarf(dictionary=self.getBuildFlags()) self.exit_during_step_inst_test() + @skipIfFreeBSD # llvm.org/pr21411: test is hanging @dwarf_test def test_step_over_with_dwarf(self): """Test thread exit during step-over handling.""" self.buildDwarf(dictionary=self.getBuildFlags()) self.exit_during_step_over_test() + @skipIfFreeBSD # llvm.org/pr21411: test is hanging @dwarf_test def test_step_in_with_dwarf(self): """Test thread exit during step-in handling.""" |

