forked from OSchip/llvm-project
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:
parent
a3c444ac23
commit
9eaa69699a
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue