forked from OSchip/llvm-project
Revert "Fix TestPtrRef2Typedef with new const adornment on expected ref type."
The additional "const" breaks the FreeBSD buildbot, and does not appear to be due to a LLVM or Clang change. Revert the change while investigating further. This reverts revision 206619. llvm-svn: 206751
This commit is contained in:
parent
6956b1a517
commit
1a85845b49
|
@ -58,8 +58,8 @@ class PtrRef2TypedefTestCase(TestBase):
|
|||
self.runCmd('type summary add --cascade true -s "IntRRef" "int &&"')
|
||||
|
||||
self.expect("frame variable x", substrs = ['(Foo *) x = 0x','IntPointer'])
|
||||
self.expect("frame variable y", substrs = ['(Foo &const) y = 0x','IntLRef'])
|
||||
self.expect("frame variable z", substrs = ['(Foo &&const) z = 0x','IntRRef'])
|
||||
self.expect("frame variable y", substrs = ['(Foo &) y = 0x','IntLRef'])
|
||||
self.expect("frame variable z", substrs = ['(Foo &&) z = 0x','IntRRef'])
|
||||
|
||||
if __name__ == '__main__':
|
||||
import atexit
|
||||
|
|
Loading…
Reference in New Issue