diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2010-11-09 21:14:23 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2010-11-09 21:14:23 +0000 |
| commit | 021d0e31737714d63bf67175f052a4323530c8a0 (patch) | |
| tree | ed0ad267942d5fc808cc0f72c8091d3f5f19fa68 | |
| parent | 0124e9ba9aa4da621500be0523343265af9997df (diff) | |
| download | bcm5719-llvm-021d0e31737714d63bf67175f052a4323530c8a0.tar.gz bcm5719-llvm-021d0e31737714d63bf67175f052a4323530c8a0.zip | |
Remove the @skip decorator for the whole class:
@unittest2.skip("rdar://problem/8641483 ./dotest.py -v -t -w forward seg faults")
and add a @skip decorator for test_with_dwarf_and_run_command() method:
@unittest2.skip("rdar://problem/8648070 'expression *bar_ptr' seg faults")
llvm-svn: 118632
| -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() |

