diff options
-rw-r--r-- | lldb/test/functionalities/inferior-crashing/TestInferiorCrashing.py | 2 | ||||
-rw-r--r-- | lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/lldb/test/functionalities/inferior-crashing/TestInferiorCrashing.py b/lldb/test/functionalities/inferior-crashing/TestInferiorCrashing.py index 14b941e8726..09cc77dfe23 100644 --- a/lldb/test/functionalities/inferior-crashing/TestInferiorCrashing.py +++ b/lldb/test/functionalities/inferior-crashing/TestInferiorCrashing.py @@ -65,7 +65,7 @@ class CrashingInferiorTestCase(TestBase): self.buildDsym() self.inferior_crashing_step_after_break() - @expectedFailureLinux # due to llvm.org/pr15988 -- step over misbehaves after crash + @skipIfLinux # due to llvm.org/pr15988 -- step over misbehaves after crash def test_inferior_crashing_step_after_break_dwarf(self): """Test that lldb functions correctly after stepping through a crash.""" self.buildDwarf() diff --git a/lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py b/lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py index 006da458b92..6fdca830605 100644 --- a/lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py +++ b/lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py @@ -66,6 +66,7 @@ class CrashingRecursiveInferiorTestCase(TestBase): self.buildDsym() self.recursive_inferior_crashing_step_after_break() + @skipIfLinux # due to llvm.org/pr15988 -- step over misbehaves after crash def test_recursive_inferior_crashing_step_after_break_dwarf(self): """Test that lldb functions correctly after stepping through a crash.""" self.buildDwarf() |