diff options
| -rw-r--r-- | lldb/test/forward/TestForwardDeclaration.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lldb/test/forward/TestForwardDeclaration.py b/lldb/test/forward/TestForwardDeclaration.py index f6b6e9dac25..d0291ced335 100644 --- a/lldb/test/forward/TestForwardDeclaration.py +++ b/lldb/test/forward/TestForwardDeclaration.py @@ -5,7 +5,6 @@ import unittest2 import lldb from lldbtest import * -@unittest2.skip("rdar://problem/8641483 ./dotest.py -v -t -w forward seg faults") class ForwardDeclarationTestCase(TestBase): mydir = "forward" @@ -16,9 +15,11 @@ class ForwardDeclarationTestCase(TestBase): self.buildDsym() self.forward_declaration() + # rdar://problem/8648070 + # 'expression *bar_ptr' seg faults # rdar://problem/8546815 # './dotest.py -v -t forward' fails for test_with_dwarf_and_run_command - @unittest2.expectedFailure + @unittest2.skip("rdar://problem/8648070 'expression *bar_ptr' seg faults") def test_with_dwarf_and_run_command(self): """Display *bar_ptr when stopped on a function with forward declaration of struct bar.""" self.buildDwarf() |

