From 18f4540f612c9f28628453f11a69f16c562e4bae Mon Sep 17 00:00:00 2001 From: Todd Fiala Date: Fri, 18 Apr 2014 17:04:21 +0000 Subject: [PATCH] Fix TestPtrRef2Typedef with new const adornment on expected ref type. llvm-svn: 206619 --- .../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 74f7b9a..e1f295c 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 &) y = 0x','IntLRef']) - self.expect("frame variable z", substrs = ['(Foo &&) z = 0x','IntRRef']) + self.expect("frame variable y", substrs = ['(Foo &const) y = 0x','IntLRef']) + self.expect("frame variable z", substrs = ['(Foo &&const) z = 0x','IntRRef']) if __name__ == '__main__': import atexit -- 2.7.4