We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4e212c6 + 315a2fd commit adf4bf0Copy full SHA for adf4bf0
fuzzing/fuzz-targets/fuzz_diff.py
@@ -17,16 +17,19 @@
17
class BytesProcessAdapter:
18
"""Allows bytes to be used as process objects returned by subprocess.Popen."""
19
20
+ @atheris.instrument_func
21
def __init__(self, input_string):
22
self.stdout = io.BytesIO(input_string)
23
self.stderr = io.BytesIO()
24
25
26
def wait(self):
27
return 0
28
29
poll = wait
30
31
32
+@atheris.instrument_func
33
def TestOneInput(data):
34
fdp = atheris.FuzzedDataProvider(data)
35
0 commit comments