[Lldb-commits] [lldb] r238616 - XFAIL additional signal vs exception tests failing on FreeBSD
Ed Maste
emaste at freebsd.org
Fri May 29 14:42:54 PDT 2015
Author: emaste
Date: Fri May 29 16:42:53 2015
New Revision: 238616
URL: http://llvm.org/viewvc/llvm-project?rev=238616&view=rev
Log:
XFAIL additional signal vs exception tests failing on FreeBSD
We need to apply to FreeBSD a change equivalent to r238549.
llvm.org/pr23699
Modified:
lldb/trunk/test/functionalities/inferior-crashing/TestInferiorCrashing.py
lldb/trunk/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py
lldb/trunk/test/functionalities/signal/handle-segv/TestHandleSegv.py
Modified: lldb/trunk/test/functionalities/inferior-crashing/TestInferiorCrashing.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/inferior-crashing/TestInferiorCrashing.py?rev=238616&r1=238615&r2=238616&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/inferior-crashing/TestInferiorCrashing.py (original)
+++ lldb/trunk/test/functionalities/inferior-crashing/TestInferiorCrashing.py Fri May 29 16:42:53 2015
@@ -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()
Modified: lldb/trunk/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py?rev=238616&r1=238615&r2=238616&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py (original)
+++ lldb/trunk/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py Fri May 29 16:42:53 2015
@@ -16,6 +16,7 @@ class CrashingRecursiveInferiorTestCase(
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()
Modified: lldb/trunk/test/functionalities/signal/handle-segv/TestHandleSegv.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/signal/handle-segv/TestHandleSegv.py?rev=238616&r1=238615&r2=238616&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/signal/handle-segv/TestHandleSegv.py (original)
+++ lldb/trunk/test/functionalities/signal/handle-segv/TestHandleSegv.py Fri May 29 16:42:53 2015
@@ -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")
More information about the lldb-commits
mailing list