XFAIL additional signal vs exception tests failing on FreeBSD
authorEd Maste <emaste@freebsd.org>
Fri, 29 May 2015 21:42:53 +0000 (21:42 +0000)
committerEd Maste <emaste@freebsd.org>
Fri, 29 May 2015 21:42:53 +0000 (21:42 +0000)
We need to apply to FreeBSD a change equivalent to r238549.

llvm.org/pr23699

llvm-svn: 238616

lldb/test/functionalities/inferior-crashing/TestInferiorCrashing.py
lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py
lldb/test/functionalities/signal/handle-segv/TestHandleSegv.py

index 344bc17..fd78a9a 100644 (file)
@@ -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()
index 5bc469e..4e1604a 100644 (file)
@@ -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()
index d9d7880..ce47e94 100644 (file)
@@ -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")