Remove the @skip() and @expectedFaiure decorators, the previously affected tests
have now all passed.

rdar://problem/8502549 and rdar://problem/8493023 are fixed


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@115399 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/class_types/TestClassTypes.py b/test/class_types/TestClassTypes.py
index fd17fc0..67a9310 100644
--- a/test/class_types/TestClassTypes.py
+++ b/test/class_types/TestClassTypes.py
@@ -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()
diff --git a/test/types/TestFloatTypesExpr.py b/test/types/TestFloatTypesExpr.py
index d254103..6c2ffe9 100644
--- a/test/types/TestFloatTypesExpr.py
+++ b/test/types/TestFloatTypesExpr.py
@@ -6,7 +6,6 @@
 import unittest2
 import lldb
 
-@unittest2.skip("crash currently: rdar://problem/8502549")
 class FloatTypesTestCase(AbstractBase.GenericTester):
 
     mydir = "types"
diff --git a/test/types/TestIntegerTypesExpr.py b/test/types/TestIntegerTypesExpr.py
index 6c4fc08..5703672 100644
--- a/test/types/TestIntegerTypesExpr.py
+++ b/test/types/TestIntegerTypesExpr.py
@@ -6,14 +6,10 @@
 import unittest2
 import lldb
 
-@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'}