Added bug number to the @skip decorator.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@115317 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/class_types/TestClassTypes.py b/test/class_types/TestClassTypes.py
index a22775e..5742bbb 100644
--- a/test/class_types/TestClassTypes.py
+++ b/test/class_types/TestClassTypes.py
@@ -5,7 +5,7 @@
 import lldb
 from lldbtest import *
 
-@unittest2.skip("crash currently")
+@unittest2.skip("crash currently: rdar://problem/8502549")
 class ClassTypesTestCase(TestBase):
 
     mydir = "class_types"
diff --git a/test/types/TestFloatTypesExpr.py b/test/types/TestFloatTypesExpr.py
index b362bba..d254103 100644
--- a/test/types/TestFloatTypesExpr.py
+++ b/test/types/TestFloatTypesExpr.py
@@ -6,7 +6,7 @@
 import unittest2
 import lldb
 
-@unittest2.skip("crash currently")
+@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 79a7c39..6c4fc08 100644
--- a/test/types/TestIntegerTypesExpr.py
+++ b/test/types/TestIntegerTypesExpr.py
@@ -6,7 +6,7 @@
 import unittest2
 import lldb
 
-@unittest2.skip("crash currently")
+@unittest2.skip("crash currently: rdar://problem/8502549")
 class IntegerTypesTestCase(AbstractBase.GenericTester):
 
     mydir = "types"