Jonas Devlieghere 2238dcc393
[NFC][Py Reformat] Reformat python files in lldb
This is an ongoing series of commits that are reformatting our Python
code. Reformatting is done with `black` (23.1.0).

If you end up having problems merging this commit because you have made
changes to a python file, the best way to handle that is to run `git
checkout --ours <yourfile>` and then reformat it with black.

RFC: https://discourse.llvm.org/t/rfc-document-and-standardize-python-code-style

Differential revision: https://reviews.llvm.org/D151460
2023-05-25 12:54:09 -07:00

54 lines
1.4 KiB
Python

"""
Fuzz tests an object after the default construction to make sure it does not crash lldb.
"""
import lldb
def fuzz_obj(obj):
obj.GetTarget()
obj.GetByteOrder()
obj.PutSTDIN("my data")
obj.GetSTDOUT(6)
obj.GetSTDERR(6)
event = lldb.SBEvent()
try:
obj.ReportEventState(event, None)
except Exception:
pass
obj.AppendEventStateReport(event, lldb.SBCommandReturnObject())
error = lldb.SBError()
obj.RemoteAttachToProcessWithID(123, error)
obj.RemoteLaunch(None, None, None, None, None, None, 0, False, error)
obj.GetNumThreads()
obj.GetThreadAtIndex(0)
obj.GetThreadByID(0)
obj.GetSelectedThread()
obj.SetSelectedThread(lldb.SBThread())
obj.SetSelectedThreadByID(0)
obj.GetState()
obj.GetExitStatus()
obj.GetExitDescription()
obj.GetProcessID()
obj.GetAddressByteSize()
obj.Destroy()
obj.Continue()
obj.Stop()
obj.Kill()
obj.Detach()
obj.Signal(7)
obj.ReadMemory(0x0000FFFF, 10, error)
obj.WriteMemory(0x0000FFFF, "hi data", error)
obj.ReadCStringFromMemory(0x0, 128, error)
obj.ReadUnsignedFromMemory(0xFF, 4, error)
obj.ReadPointerFromMemory(0xFF, error)
obj.GetBroadcaster()
obj.GetDescription(lldb.SBStream())
obj.LoadImage(lldb.SBFileSpec(), error)
obj.UnloadImage(0)
obj.Clear()
obj.GetNumSupportedHardwareWatchpoints(error)
for thread in obj:
s = str(thread)
len(obj)