[lldb-dev] [Bug 23488] New: TestDefaultConstructorForAPIObjects.py fails on some Macs
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Mon May 11 22:47:43 PDT 2015
https://llvm.org/bugs/show_bug.cgi?id=23488
Bug ID: 23488
Summary: TestDefaultConstructorForAPIObjects.py fails on some
Macs
Product: lldb
Version: unspecified
Hardware: PC
OS: MacOS X
Status: NEW
Severity: normal
Priority: P
Component: All Bugs
Assignee: lldb-dev at cs.uiuc.edu
Reporter: vince at nethacker.com
Classification: Unclassified
======================================================================
ERROR: test_SBError
(TestDefaultConstructorForAPIObjects.APIDefaultConstructorTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Users/vharron/ll/tot/lldb/test/lldbtest.py", line 432, in wrapper
return func(self, *args, **kwargs)
File
"/Users/vharron/ll/tot/lldb/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py",
line 120, in test_SBError
sb_error.fuzz_obj(obj)
File
"/Users/vharron/ll/tot/lldb/test/python_api/default-constructor/sb_error.py",
line 19, in fuzz_obj
obj.SetErrorStringWithFormat("%s!", "error")
TypeError: SetErrorStringWithFormat() takes exactly 2 arguments (3 given)
Config=x86_64-clang
FAILING MAC:
vharron-macbookpro:test vharron$ egrep SetErrorStringWithFormat
../scripts/interface/SBError.i
SetErrorStringWithFormat (const char *format, ...);
vharron-macbookpro:test vharron$ egrep -A2 SetErrorStringWithFormat
../DerivedData/lldb/Build/Products/Debug/lldb.py
def SetErrorStringWithFormat(self, format):
"""SetErrorStringWithFormat(SBError self, str const * format) -> int"""
return _lldb.SBError_SetErrorStringWithFormat(self, format)
swig 3.0.5 from homebrew
PASSING MAC:
vharron-macpro3:test vharron$ egrep SetErrorStringWithFormat
../scripts/interface/SBError.i
SetErrorStringWithFormat (const char *format, ...);
vharron-macpro3:test vharron$ egrep -A2 SetErrorStringWithFormat
../DerivedData/lldb/Build/Products/Debug/lldb.py
def SetErrorStringWithFormat(self, *args):
"""SetErrorStringWithFormat(SBError self, str const * format) -> int"""
return _lldb.SBError_SetErrorStringWithFormat(self, *args)
swig 3.0.2 from MacPorts?
BTW, this is working on Ubuntu w/Swig 2.0.11
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/lldb-dev/attachments/20150512/1e08faef/attachment.html>
More information about the lldb-dev
mailing list