Files
clang-p2996/lldb/test/python_api/default-constructor/sb_error.py
Johnny Chen 06657625b8 Add fuzz calls for SBError.
llvm-svn: 133850
2011-06-25 00:21:00 +00:00

20 lines
454 B
Python

"""
Fuzz tests an object after the default construction to make sure it does not crash lldb.
"""
import sys
import lldb
def fuzz_obj(obj):
obj.GetCString()
obj.Fail()
obj.Success()
obj.GetError()
obj.GetType()
obj.SetError(5, lldb.eErrorTypeGeneric)
obj.SetErrorToErrno()
obj.SetErrorToGenericError()
obj.SetErrorString("xyz")
obj.SetErrorStringWithFormat("%s!", "error")
obj.GetDescription(lldb.SBStream())