Second batch of adding @dsym_test/@dwarf_test decorators to existing test cases.
Plus some minor cleanup of test method names.
Third and final batch is coming.
llvm-svn: 154197
diff --git a/lldb/test/lang/objc/foundation/TestObjCMethods.py b/lldb/test/lang/objc/foundation/TestObjCMethods.py
index 7d5618d..3b4df97 100644
--- a/lldb/test/lang/objc/foundation/TestObjCMethods.py
+++ b/lldb/test/lang/objc/foundation/TestObjCMethods.py
@@ -13,11 +13,13 @@
 
     mydir = os.path.join("lang", "objc", "foundation")
 
+    @dsym_test
     def test_break_with_dsym(self):
         """Test setting objc breakpoints using '_regexp-break' and 'breakpoint set'."""
         self.buildDsym()
         self.break_on_objc_methods()
 
+    @dwarf_test
     def test_break_with_dwarf(self):
         """Test setting objc breakpoints using '_regexp-break' and 'breakpoint set'."""
         self.buildDwarf()
@@ -26,6 +28,7 @@
     #@unittest2.expectedFailure
     # rdar://problem/8542091
     # rdar://problem/8492646
+    @dsym_test
     def test_data_type_and_expr_with_dsym(self):
         """Lookup objective-c data types and evaluate expressions."""
         self.buildDsym()
@@ -34,17 +37,20 @@
     #@unittest2.expectedFailure
     # rdar://problem/8542091
     # rdar://problem/8492646
+    @dwarf_test
     def test_data_type_and_expr_with_dwarf(self):
         """Lookup objective-c data types and evaluate expressions."""
         self.buildDwarf()
         self.data_type_and_expr_objc()
 
     @python_api_test
+    @dsym_test
     def test_print_ivars_correctly_with_dsym (self):
         self.buildDsym()
         self.print_ivars_correctly()
 
     @python_api_test
+    @dwarf_test
     def test_print_ivars_correctly_with_dwarf (self):
         self.buildDwarf()
         self.print_ivars_correctly()