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
This commit is contained in:
Johnny Chen 2010-10-01 23:21:20 +00:00
parent a3c444ac23
commit 9eaa69699a
1 changed files with 1 additions and 1 deletions

View File

@ -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.