XFAIL additional signal vs exception tests failing on FreeBSD

We need to apply to FreeBSD a change equivalent to r238549.

llvm.org/pr23699

llvm-svn: 238616
This commit is contained in:
Ed Maste 2015-05-29 21:42:53 +00:00
parent 0b8bbc6dfd
commit 85f84e0b74
3 changed files with 3 additions and 1 deletions

View File

@ -15,6 +15,7 @@ class CrashingInferiorTestCase(TestBase):
self.buildDsym() self.buildDsym()
self.inferior_crashing() self.inferior_crashing()
@expectedFailureFreeBSD("llvm.org/pr23699 SIGSEGV is reported as exception, not signal")
def test_inferior_crashing_dwarf(self): def test_inferior_crashing_dwarf(self):
"""Test that lldb reliably catches the inferior crashing (command).""" """Test that lldb reliably catches the inferior crashing (command)."""
self.buildDwarf() self.buildDwarf()

View File

@ -16,6 +16,7 @@ class CrashingRecursiveInferiorTestCase(TestBase):
self.buildDsym() self.buildDsym()
self.recursive_inferior_crashing() self.recursive_inferior_crashing()
@expectedFailureFreeBSD("llvm.org/pr23699 SIGSEGV is reported as exception, not signal")
def test_recursive_inferior_crashing_dwarf(self): def test_recursive_inferior_crashing_dwarf(self):
"""Test that lldb reliably catches the inferior crashing (command).""" """Test that lldb reliably catches the inferior crashing (command)."""
self.buildDwarf() self.buildDwarf()

View File

@ -14,7 +14,7 @@ class HandleSegvTestCase(TestBase):
@skipIfWindows # signals do not exist on Windows @skipIfWindows # signals do not exist on Windows
@skipIfDarwin @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): def test_inferior_handle_sigsegv_with_dwarf(self):
self.buildDefault() self.buildDefault()
exe = os.path.join(os.getcwd(), "a.out") exe = os.path.join(os.getcwd(), "a.out")