[Lldb-commits] [lldb] r118632 - /lldb/trunk/test/forward/TestForwardDeclaration.py
Johnny Chen
johnny.chen at apple.com
Tue Nov 9 13:14:23 PST 2010
Author: johnny
Date: Tue Nov 9 15:14:23 2010
New Revision: 118632
URL: http://llvm.org/viewvc/llvm-project?rev=118632&view=rev
Log:
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")
Modified:
lldb/trunk/test/forward/TestForwardDeclaration.py
Modified: lldb/trunk/test/forward/TestForwardDeclaration.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/forward/TestForwardDeclaration.py?rev=118632&r1=118631&r2=118632&view=diff
==============================================================================
--- lldb/trunk/test/forward/TestForwardDeclaration.py (original)
+++ lldb/trunk/test/forward/TestForwardDeclaration.py Tue Nov 9 15:14:23 2010
@@ -5,7 +5,6 @@
import lldb
from lldbtest import *
- at unittest2.skip("rdar://problem/8641483 ./dotest.py -v -t -w forward seg faults")
class ForwardDeclarationTestCase(TestBase):
mydir = "forward"
@@ -16,9 +15,11 @@
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()
More information about the lldb-commits
mailing list