Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork939
Commit2a2294f
committed
Improve
The fuzzer was having trouble analyzing `fuzz_submodule.py` when usingthe `atheris.instrument_imports()` context manager. Switching to`atheris.instrument_all()` instead slightly increases the startup timefor the fuzzer, but significantly improves the fuzzing engines abilityto identify new coverage.The changes here also disable warnings that are logged to `stdout` fromthe SUT. These warnings are expected to happen with some inputs andclutter the fuzzer output logs. They can be optionally re-enabled fordebugging by passing a flag o the Python interpreter command line orsetting the `PYTHONWARNINGS` environment variable.fuzz_submodule.py
coverage & efficacy1 parent6c00ce6 commit2a2294f
2 files changed
+15
-5
lines changedLines changed: 13 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
4 | 4 |
| |
5 | 5 |
| |
6 | 6 |
| |
| 7 | + | |
7 | 8 |
| |
8 |
| - | |
| 9 | + | |
9 | 10 |
| |
10 | 11 |
| |
11 | 12 |
| |
12 |
| - | |
13 |
| - | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
14 | 23 |
| |
15 | 24 |
| |
16 | 25 |
| |
| |||
92 | 101 |
| |
93 | 102 |
| |
94 | 103 |
| |
| 104 | + | |
95 | 105 |
| |
96 | 106 |
| |
97 | 107 |
| |
|
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 |
| - | |
| 2 | + | |
3 | 3 |
| |
4 | 4 |
| |
5 | 5 |
| |
| |||
24 | 24 |
| |
25 | 25 |
| |
26 | 26 |
| |
27 |
| - | |
| 27 | + | |
28 | 28 |
| |
29 | 29 |
| |
30 | 30 |
| |
|
0 commit comments
Comments
(0)