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@cs.uiuc.edu Reporter: vi...@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.
_______________________________________________ lldb-dev mailing list lldb-dev@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev