[Lldb-commits] [lldb] r177926 - Fix the buildbot so a LLDB test doesn't fail looking for "<invalid usage of pointer value as object>".

Greg Clayton gclayton at apple.com
Mon Mar 25 15:04:11 PDT 2013


Author: gclayton
Date: Mon Mar 25 17:04:11 2013
New Revision: 177926

URL: http://llvm.org/viewvc/llvm-project?rev=177926&view=rev
Log:
Fix the buildbot so a LLDB test doesn't fail looking for "<invalid usage of pointer value as object>".


Modified:
    lldb/trunk/test/functionalities/data-formatter/data-formatter-smart-array/TestDataFormatterSmartArray.py

Modified: lldb/trunk/test/functionalities/data-formatter/data-formatter-smart-array/TestDataFormatterSmartArray.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/data-formatter/data-formatter-smart-array/TestDataFormatterSmartArray.py?rev=177926&r1=177925&r2=177926&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/data-formatter/data-formatter-smart-array/TestDataFormatterSmartArray.py (original)
+++ lldb/trunk/test/functionalities/data-formatter/data-formatter-smart-array/TestDataFormatterSmartArray.py Mon Mar 25 17:04:11 2013
@@ -240,12 +240,6 @@ class SmartArrayDataFormatterTestCase(Te
 # using [] is required here
         self.runCmd("type summary add --summary-string \"arr = ${var%x}\" \"int [5]\"")
         
-        self.expect("frame variable intarr",
-                    substrs = ['<invalid usage of pointer value as object>'])
-        
-        self.expect("frame variable other.intarr",
-                    substrs = ['<invalid usage of pointer value as object>'])
-
         self.runCmd("type summary add --summary-string \"arr = ${var[]%x}\" \"int [5]\"")
         
         self.expect("frame variable intarr",





More information about the lldb-commits mailing list