Add fuzz call to SBStringList.AppendString(None). LLDB should not crash.

llvm-svn: 146935
This commit is contained in:
Johnny Chen 2011-12-20 00:49:06 +00:00
parent 4f8189bc6b
commit c89c74ec2d
1 changed files with 1 additions and 0 deletions

View File

@ -7,6 +7,7 @@ import lldb
def fuzz_obj(obj):
obj.AppendString("another string")
obj.AppendString(None)
obj.AppendList(None, 0)
obj.AppendList(lldb.SBStringList())
obj.GetSize()