diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2010-10-01 23:21:20 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2010-10-01 23:21:20 +0000 |
| commit | 9eaa69699adb0995fdffeb2e570c73908282064c (patch) | |
| tree | 1f817d91ce5382f1fcab8a56c2221fefa0bbb174 | |
| parent | a3c444ac23206fefd83f75274ee8f2aeb97eee67 (diff) | |
| download | bcm5719-llvm-9eaa69699adb0995fdffeb2e570c73908282064c.tar.gz bcm5719-llvm-9eaa69699adb0995fdffeb2e570c73908282064c.zip | |
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.
llvm-svn: 115372
| -rw-r--r-- | lldb/test/foundation/TestObjCMethods.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/foundation/TestObjCMethods.py b/lldb/test/foundation/TestObjCMethods.py index 860131da603..b166659f07c 100644 --- a/lldb/test/foundation/TestObjCMethods.py +++ b/lldb/test/foundation/TestObjCMethods.py @@ -109,7 +109,7 @@ class FoundationTestCase(TestBase): 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. |

