Author: emaste
Date: Mon Apr 21 09:10:38 2014
New Revision: 206751
URL: http://llvm.org/viewvc/llvm-project?rev=206751&view=rev
Log:
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.
Modified:
lldb/trunk/test/functionalities/data-formatter/ptr_ref_typedef/TestPtrRef2Typedef.py
Modified:
lldb/trunk/test/functionalities/data-formatter/ptr_ref_typedef/TestPtrRef2Typedef.py
URL:
http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/data-formatter/ptr_ref_typedef/TestPtrRef2Typedef.py?rev=206751&r1=206750&r2=206751&view=diff
==============================================================================
---
lldb/trunk/test/functionalities/data-formatter/ptr_ref_typedef/TestPtrRef2Typedef.py
(original)
+++
lldb/trunk/test/functionalities/data-formatter/ptr_ref_typedef/TestPtrRef2Typedef.py
Mon Apr 21 09:10:38 2014
@@ -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
_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits