[Lldb-commits] [lldb] r115399 - in /lldb/trunk/test: class_types/TestClassTypes.py types/TestFloatTypesExpr.py types/TestIntegerTypesExpr.py
Johnny Chen
johnny.chen at apple.com
Fri Oct 1 18:46:20 PDT 2010
Author: johnny
Date: Fri Oct 1 20:46:20 2010
New Revision: 115399
URL: http://llvm.org/viewvc/llvm-project?rev=115399&view=rev
Log:
Remove the @skip() and @expectedFaiure decorators, the previously affected tests
have now all passed.
rdar://problem/8502549 and rdar://problem/8493023 are fixed
Modified:
lldb/trunk/test/class_types/TestClassTypes.py
lldb/trunk/test/types/TestFloatTypesExpr.py
lldb/trunk/test/types/TestIntegerTypesExpr.py
Modified: lldb/trunk/test/class_types/TestClassTypes.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/class_types/TestClassTypes.py?rev=115399&r1=115398&r2=115399&view=diff
==============================================================================
--- lldb/trunk/test/class_types/TestClassTypes.py (original)
+++ lldb/trunk/test/class_types/TestClassTypes.py Fri Oct 1 20:46:20 2010
@@ -34,14 +34,12 @@
self.buildDwarf()
self.breakpoint_creation_by_filespec_python()
- @unittest2.skip("crash currently: rdar://problem/8502549")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_with_dsym_and_expr_parser(self):
"""Test 'frame variable this' and 'expr this' when stopped inside a constructor."""
self.buildDsym()
self.class_types_expr_parser()
- @unittest2.skip("crash currently: rdar://problem/8502549")
def test_with_dwarf_and_expr_parser(self):
"""Test 'frame variable this' and 'expr this' when stopped inside a constructor."""
self.buildDwarf()
Modified: lldb/trunk/test/types/TestFloatTypesExpr.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/types/TestFloatTypesExpr.py?rev=115399&r1=115398&r2=115399&view=diff
==============================================================================
--- lldb/trunk/test/types/TestFloatTypesExpr.py (original)
+++ lldb/trunk/test/types/TestFloatTypesExpr.py Fri Oct 1 20:46:20 2010
@@ -6,7 +6,6 @@
import unittest2
import lldb
- at unittest2.skip("crash currently: rdar://problem/8502549")
class FloatTypesTestCase(AbstractBase.GenericTester):
mydir = "types"
Modified: lldb/trunk/test/types/TestIntegerTypesExpr.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/types/TestIntegerTypesExpr.py?rev=115399&r1=115398&r2=115399&view=diff
==============================================================================
--- lldb/trunk/test/types/TestIntegerTypesExpr.py (original)
+++ lldb/trunk/test/types/TestIntegerTypesExpr.py Fri Oct 1 20:46:20 2010
@@ -6,14 +6,10 @@
import unittest2
import lldb
- at unittest2.skip("crash currently: rdar://problem/8502549")
class IntegerTypesTestCase(AbstractBase.GenericTester):
mydir = "types"
- # rdar://problem/8493023
- # test/types failures for Test*TypesExpr.py: element offset computed wrong and sign error?
-
def test_char_type_with_dsym(self):
"""Test that char-type variable expressions are evaluated correctly."""
d = {'CXX_SOURCES': 'char.cpp'}
@@ -42,7 +38,6 @@
self.setTearDownCleanup(dictionary=d)
self.unsigned_char_type_expr()
- @unittest2.expectedFailure
def test_short_type_with_dsym(self):
"""Test that short-type variable expressions are evaluated correctly."""
d = {'CXX_SOURCES': 'short.cpp'}
@@ -50,7 +45,6 @@
self.setTearDownCleanup(dictionary=d)
self.short_type_expr()
- @unittest2.expectedFailure
def test_short_type_with_dwarf(self):
"""Test that short-type variable expressions are evaluated correctly."""
d = {'CXX_SOURCES': 'short.cpp'}
More information about the lldb-commits
mailing list