Another instance of the same test failing

llvm-svn: 193825
This commit is contained in:
Enrico Granata 2013-10-31 23:06:54 +00:00
parent 4a2dc3b01b
commit 4510a159c2
1 changed files with 2 additions and 0 deletions

View File

@ -48,12 +48,14 @@ class AssertingInferiorTestCase(TestBase):
self.inferior_asserting_python() self.inferior_asserting_python()
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
@unittest2.expectedFailure("rdar://15367233")
def test_inferior_asserting_expr(self): def test_inferior_asserting_expr(self):
"""Test that the lldb expression interpreter can read from the inferior after asserting (command).""" """Test that the lldb expression interpreter can read from the inferior after asserting (command)."""
self.buildDsym() self.buildDsym()
self.inferior_asserting_expr() self.inferior_asserting_expr()
@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_expr(self): def test_inferior_asserting_expr(self):
"""Test that the lldb expression interpreter can read from the inferior after asserting (command).""" """Test that the lldb expression interpreter can read from the inferior after asserting (command)."""
self.buildDwarf() self.buildDwarf()