diff --git a/lldb/test/functionalities/inferior-crashing/TestInferiorCrashing.py b/lldb/test/functionalities/inferior-crashing/TestInferiorCrashing.py index 344bc17b7f46..fd78a9a76efd 100644 --- a/lldb/test/functionalities/inferior-crashing/TestInferiorCrashing.py +++ b/lldb/test/functionalities/inferior-crashing/TestInferiorCrashing.py @@ -15,6 +15,7 @@ class CrashingInferiorTestCase(TestBase): self.buildDsym() self.inferior_crashing() + @expectedFailureFreeBSD("llvm.org/pr23699 SIGSEGV is reported as exception, not signal") def test_inferior_crashing_dwarf(self): """Test that lldb reliably catches the inferior crashing (command).""" 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 5bc469e25536..4e1604ad1d1b 100644 --- a/lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py +++ b/lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py @@ -16,6 +16,7 @@ class CrashingRecursiveInferiorTestCase(TestBase): self.buildDsym() self.recursive_inferior_crashing() + @expectedFailureFreeBSD("llvm.org/pr23699 SIGSEGV is reported as exception, not signal") def test_recursive_inferior_crashing_dwarf(self): """Test that lldb reliably catches the inferior crashing (command).""" self.buildDwarf() diff --git a/lldb/test/functionalities/signal/handle-segv/TestHandleSegv.py b/lldb/test/functionalities/signal/handle-segv/TestHandleSegv.py index d9d788082629..ce47e942867d 100644 --- a/lldb/test/functionalities/signal/handle-segv/TestHandleSegv.py +++ b/lldb/test/functionalities/signal/handle-segv/TestHandleSegv.py @@ -14,7 +14,7 @@ class HandleSegvTestCase(TestBase): @skipIfWindows # signals do not exist on Windows @skipIfDarwin - @expectedFailureFreeBSD("llvm.org/23699 SIGSEGV is reported as exception, not signal") + @expectedFailureFreeBSD("llvm.org/pr23699 SIGSEGV is reported as exception, not signal") def test_inferior_handle_sigsegv_with_dwarf(self): self.buildDefault() exe = os.path.join(os.getcwd(), "a.out")