[Lldb-commits] [lldb] r206751 - Revert "Fix TestPtrRef2Typedef with new const adornment on expected ref type."

Ed Maste emaste at freebsd.org
Mon Apr 21 07:10:39 PDT 2014


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





More information about the lldb-commits mailing list