[Lldb-commits] [lldb] r115372 - /lldb/trunk/test/foundation/TestObjCMethods.py

Johnny Chen johnny.chen at apple.com
Fri Oct 1 16:21:20 PDT 2010


Author: johnny
Date: Fri Oct  1 18:21:20 2010
New Revision: 115372

URL: http://llvm.org/viewvc/llvm-project?rev=115372&view=rev
Log:
Updated the expected match string when stopped on an objc instance method from:

    ARG: (struct objc_selector *) _cmd

to

    ARG: (SEL) _cmd

The change most likely resulted from an update from the llvm tot with a newer clang.

Modified:
    lldb/trunk/test/foundation/TestObjCMethods.py

Modified: lldb/trunk/test/foundation/TestObjCMethods.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/foundation/TestObjCMethods.py?rev=115372&r1=115371&r2=115372&view=diff
==============================================================================
--- lldb/trunk/test/foundation/TestObjCMethods.py (original)
+++ lldb/trunk/test/foundation/TestObjCMethods.py Fri Oct  1 18:21:20 2010
@@ -109,7 +109,7 @@
 
         self.expect("frame variable -s", VARIABLES_DISPLAYED_CORRECTLY,
             substrs = ["ARG: (MyString *) self",
-                       "ARG: (struct objc_selector *) _cmd"])
+                       "ARG: (SEL) _cmd"])
 
         # Test new feature with r115115:
         # Add "-o" option to "expression" which prints the object description if available.





More information about the lldb-commits mailing list