forked from OSchip/llvm-project
Tes passing None to SetErrorString() and SetErrorStringWithFormat().
llvm-svn: 146919
This commit is contained in:
parent
f9aca2089e
commit
c5c0247d98
|
@ -15,6 +15,8 @@ def fuzz_obj(obj):
|
|||
obj.SetErrorToErrno()
|
||||
obj.SetErrorToGenericError()
|
||||
obj.SetErrorString("xyz")
|
||||
obj.SetErrorString(None)
|
||||
obj.SetErrorStringWithFormat("%s!", "error")
|
||||
obj.SetErrorStringWithFormat(None)
|
||||
obj.GetDescription(lldb.SBStream())
|
||||
obj.Clear()
|
||||
|
|
Loading…
Reference in New Issue