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"



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@118017 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/types/TestIntegerTypes.py b/test/types/TestIntegerTypes.py
index 358838b..3404553 100644
--- a/test/types/TestIntegerTypes.py
+++ b/test/types/TestIntegerTypes.py
@@ -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'}
diff --git a/test/types/TestIntegerTypesExpr.py b/test/types/TestIntegerTypesExpr.py
index 6abc6b7..26da1b4 100644
--- a/test/types/TestIntegerTypesExpr.py
+++ b/test/types/TestIntegerTypesExpr.py
@@ -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'}