From 1a85845b492007a49e4cc8aa8eb059c5cc5599fa Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Mon, 21 Apr 2014 14:10:38 +0000 Subject: [PATCH] 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 --- .../data-formatter/ptr_ref_typedef/TestPtrRef2Typedef.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/test/functionalities/data-formatter/ptr_ref_typedef/TestPtrRef2Typedef.py b/lldb/test/functionalities/data-formatter/ptr_ref_typedef/TestPtrRef2Typedef.py index e1f295c59c9d..74f7b9adee40 100644 --- a/lldb/test/functionalities/data-formatter/ptr_ref_typedef/TestPtrRef2Typedef.py +++ b/lldb/test/functionalities/data-formatter/ptr_ref_typedef/TestPtrRef2Typedef.py @@ -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