[Lldb-commits] [lldb] r121051 - /lldb/trunk/test/foundation/main.m

Johnny Chen johnny.chen at apple.com
Mon Dec 6 14:33:00 PST 2010


Author: johnny
Date: Mon Dec  6 16:33:00 2010
New Revision: 121051

URL: http://llvm.org/viewvc/llvm-project?rev=121051&view=rev
Log:
Disambiguate the comment strings in order to be used from the .py test file.

Modified:
    lldb/trunk/test/foundation/main.m

Modified: lldb/trunk/test/foundation/main.m
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/foundation/main.m?rev=121051&r1=121050&r2=121051&view=diff
==============================================================================
--- lldb/trunk/test/foundation/main.m (original)
+++ lldb/trunk/test/foundation/main.m Mon Dec  6 16:33:00 2010
@@ -69,7 +69,7 @@
     printf("[str length] = %zu\n", (size_t)[str length]);
     printf("[str description] = %s\n", [[str description] UTF8String]);
     id str_id = str;
-    // Expressions to test here:
+    // Expressions to test here for NSString:
     // expression (char *)sel_getName(sel)
     // expression [str length]
     // expression [id length]
@@ -98,7 +98,7 @@
 {
     NSArray *array1 = [NSArray arrayWithObjects: @"array1 object1", @"array1 object2", @"array1 object3", nil];
     NSArray *array2 = [NSArray arrayWithObjects: array1, @"array2 object2", @"array2 object3", nil];
-    // Expressions to test here:
+    // Expressions to test here for NSArray:
     // expression [array1 count]
     // expression array1.count
     // expression [array2 count]





More information about the lldb-commits mailing list