[Lldb-commits] [lldb] r193824 - Mark this as an expected failure
Enrico Granata
egranata at apple.com
Thu Oct 31 16:05:36 PDT 2013
Author: enrico
Date: Thu Oct 31 18:05:35 2013
New Revision: 193824
URL: http://llvm.org/viewvc/llvm-project?rev=193824&view=rev
Log:
Mark this as an expected failure
Modified:
lldb/trunk/test/functionalities/inferior-assert/TestInferiorAssert.py
Modified: lldb/trunk/test/functionalities/inferior-assert/TestInferiorAssert.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/inferior-assert/TestInferiorAssert.py?rev=193824&r1=193823&r2=193824&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/inferior-assert/TestInferiorAssert.py (original)
+++ lldb/trunk/test/functionalities/inferior-assert/TestInferiorAssert.py Thu Oct 31 18:05:35 2013
@@ -10,12 +10,14 @@ class AssertingInferiorTestCase(TestBase
mydir = os.path.join("functionalities", "inferior-assert")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
+ @unittest2.expectedFailure("rdar://15367233")
def test_inferior_asserting_dsym(self):
"""Test that lldb reliably catches the inferior asserting (command)."""
self.buildDsym()
self.inferior_asserting()
- @expectedFailurei386 # llvm.org/pr17384: lldb needs to be aware of linux-vdso.so to unwind stacks properly
+ @expectedFailurei386 # llvm.org/pr17384: lldb needs to be aware of linux-vdso.so to unwind stacks properly'
+ @unittest2.expectedFailure("rdar://15367233")
def test_inferior_asserting_dwarf(self):
"""Test that lldb reliably catches the inferior asserting (command)."""
self.buildDwarf()
More information about the lldb-commits
mailing list