diff --git a/projects/croniter/fuzz_iter.py b/projects/croniter/fuzz_iter.py index 7ba559bf7..c0a5199ac 100644 --- a/projects/croniter/fuzz_iter.py +++ b/projects/croniter/fuzz_iter.py @@ -26,6 +26,7 @@ with atheris.instrument_imports(): ) +@atheris.instrument_func def TestOneInput(data): fdp = atheris.FuzzedDataProvider(data) base = datetime(2012, 4, 6, 13, 26, 10) @@ -45,6 +46,7 @@ def TestOneInput(data): def main(): + atheris.instrument_all() atheris.Setup(sys.argv, TestOneInput, enable_python_coverage=True) atheris.Fuzz()