[Lldb-commits] [lldb] r118017 - in /lldb/trunk/test/types: TestIntegerTypes.py TestIntegerTypesExpr.py
Johnny Chen
johnny.chen at apple.com
Tue Nov 2 09:04:18 PDT 2010
Author: johnny
Date: Tue Nov 2 11:04:18 2010
New Revision: 118017
URL: http://llvm.org/viewvc/llvm-project?rev=118017&view=rev
Log:
Remove 8 @expectedFailure decorators, the following bug has been fixed:
# rdar://problem/8482903
# test suite failure for types dir -- "long long" and "unsigned long long"
Modified:
lldb/trunk/test/types/TestIntegerTypes.py
lldb/trunk/test/types/TestIntegerTypesExpr.py
Modified: lldb/trunk/test/types/TestIntegerTypes.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/types/TestIntegerTypes.py?rev=118017&r1=118016&r2=118017&view=diff
==============================================================================
--- lldb/trunk/test/types/TestIntegerTypes.py (original)
+++ lldb/trunk/test/types/TestIntegerTypes.py Tue Nov 2 11:04:18 2010
@@ -134,7 +134,6 @@
# rdar://problem/8482903
# test suite failure for types dir -- "long long" and "unsigned long long"
- @unittest2.expectedFailure
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_long_long_type_with_dsym(self):
"""Test that 'long long'-type variables are displayed correctly."""
@@ -143,7 +142,6 @@
self.setTearDownCleanup(dictionary=d)
self.long_long_type()
- @unittest2.expectedFailure
def test_long_long_type_with_dwarf(self):
"""Test that 'long long'-type variables are displayed correctly."""
d = {'CXX_SOURCES': 'long_long.cpp'}
@@ -151,7 +149,6 @@
self.setTearDownCleanup(dictionary=d)
self.long_long_type()
- @unittest2.expectedFailure
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_unsigned_long_long_type_with_dsym(self):
"""Test that 'unsigned long long'-type variables are displayed correctly."""
@@ -160,7 +157,6 @@
self.setTearDownCleanup(dictionary=d)
self.unsigned_long_long_type()
- @unittest2.expectedFailure
def test_unsigned_long_long_type_with_dwarf(self):
"""Test that 'unsigned long long'-type variables are displayed correctly."""
d = {'CXX_SOURCES': 'unsigned_long_long.cpp'}
Modified: lldb/trunk/test/types/TestIntegerTypesExpr.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/types/TestIntegerTypesExpr.py?rev=118017&r1=118016&r2=118017&view=diff
==============================================================================
--- lldb/trunk/test/types/TestIntegerTypesExpr.py (original)
+++ lldb/trunk/test/types/TestIntegerTypesExpr.py Tue Nov 2 11:04:18 2010
@@ -134,7 +134,6 @@
# rdar://problem/8482903
# test suite failure for types dir -- "long long" and "unsigned long long"
- @unittest2.expectedFailure
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_long_long_type_with_dsym(self):
"""Test that 'long long'-type variable expressions are evaluated correctly."""
@@ -143,7 +142,6 @@
self.setTearDownCleanup(dictionary=d)
self.long_long_type_expr()
- @unittest2.expectedFailure
def test_long_long_type_with_dwarf(self):
"""Test that 'long long'-type variable expressions are evaluated correctly."""
d = {'CXX_SOURCES': 'long_long.cpp'}
@@ -151,7 +149,6 @@
self.setTearDownCleanup(dictionary=d)
self.long_long_type_expr()
- @unittest2.expectedFailure
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_unsigned_long_long_type_with_dsym(self):
"""Test that 'unsigned long long'-type variable expressions are evaluated correctly."""
@@ -160,7 +157,6 @@
self.setTearDownCleanup(dictionary=d)
self.unsigned_long_long_type_expr()
- @unittest2.expectedFailure
def test_unsigned_long_long_type_with_dwarf(self):
"""Test that 'unsigned long long'-type variable expressions are evaluated correctly."""
d = {'CXX_SOURCES': 'unsigned_long_long.cpp'}
More information about the lldb-commits
mailing list