diff options
| author | Matt Kopec <Matt.Kopec@intel.com> | 2013-09-26 23:30:59 +0000 |
|---|---|---|
| committer | Matt Kopec <Matt.Kopec@intel.com> | 2013-09-26 23:30:59 +0000 |
| commit | ee969f9f274989bd55794bcff9e925663bbc5df4 (patch) | |
| tree | 15f6a3bdec03726e5800ef4d4edce2ad6024f771 /lldb/test/functionalities/inferior-assert | |
| parent | 3c6ee599a2a9e43f70bbae277cfd41db9a30f35c (diff) | |
| download | bcm5719-llvm-ee969f9f274989bd55794bcff9e925663bbc5df4.tar.gz bcm5719-llvm-ee969f9f274989bd55794bcff9e925663bbc5df4.zip | |
Mark 32/64-bit tests as expected fail after root causing and referencing bugzilla.
Fix TestFrames.py error to check against a None pc value.
llvm-svn: 191470
Diffstat (limited to 'lldb/test/functionalities/inferior-assert')
| -rw-r--r-- | lldb/test/functionalities/inferior-assert/TestInferiorAssert.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/test/functionalities/inferior-assert/TestInferiorAssert.py b/lldb/test/functionalities/inferior-assert/TestInferiorAssert.py index b011ec91be4..a5d2eae7846 100644 --- a/lldb/test/functionalities/inferior-assert/TestInferiorAssert.py +++ b/lldb/test/functionalities/inferior-assert/TestInferiorAssert.py @@ -15,6 +15,7 @@ class AssertingInferiorTestCase(TestBase): self.buildDsym() self.inferior_asserting() + @expectedFailurei386 # llvm.org/pr17384: lldb needs to be aware of linux-vdso.so to unwind stacks properly def test_inferior_asserting_dwarf(self): """Test that lldb reliably catches the inferior asserting (command).""" self.buildDwarf() @@ -32,6 +33,7 @@ class AssertingInferiorTestCase(TestBase): self.buildDwarf() self.inferior_asserting_registers() + @expectedFailurei386 # llvm.org/pr17384: lldb needs to be aware of linux-vdso.so to unwind stacks properly def test_inferior_asserting_disassemble(self): """Test that lldb reliably disassembles frames after asserting (command).""" self.buildDefault() @@ -49,6 +51,7 @@ class AssertingInferiorTestCase(TestBase): self.buildDsym() self.inferior_asserting_expr() + @expectedFailurei386 # llvm.org/pr17384: lldb needs to be aware of linux-vdso.so to unwind stacks properly def test_inferior_asserting_expr(self): """Test that the lldb expression interpreter can read from the inferior after asserting (command).""" self.buildDwarf() @@ -60,6 +63,7 @@ class AssertingInferiorTestCase(TestBase): self.buildDsym() self.inferior_asserting_step() + @expectedFailurei386 # llvm.org/pr17384: lldb needs to be aware of linux-vdso.so to unwind stacks properly def test_inferior_asserting_step(self): """Test that lldb functions correctly after stepping through a call to assert().""" self.buildDwarf() |

