| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -17,16 +17,19 @@ | |||
| 17 | 17 | class BytesProcessAdapter: | |
| 18 | 18 | """Allows bytes to be used as process objects returned by subprocess.Popen.""" | |
| 19 | 19 | ||
| 20 | + @atheris.instrument_func | ||
| 20 | 21 | def __init__(self, input_string): | |
| 21 | 22 | self.stdout = io.BytesIO(input_string) | |
| 22 | 23 | self.stderr = io.BytesIO() | |
| 23 | 24 | ||
| 25 | + @atheris.instrument_func | ||
| 24 | 26 | def wait(self): | |
| 25 | 27 | return 0 | |
| 26 | 28 | ||
| 27 | 29 | poll = wait | |
| 28 | 30 | ||
| 29 | 31 | ||
| 32 | + @atheris.instrument_func | ||
| 30 | 33 | def TestOneInput(data): | |
| 31 | 34 | fdp = atheris.FuzzedDataProvider(data) | |
| 32 | 35 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments