Skip to content

Commit

Permalink
Fix AFL minimization (#4278)
Browse files Browse the repository at this point in the history
Minimization tasks need to be created for AFL even though AFL itself
doesn't support minimization.
  • Loading branch information
jonathanmetzman authored Oct 7, 2024
1 parent 4f15665 commit af2907b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/clusterfuzz/_internal/bot/tasks/task_creation.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,8 @@ def create_tasks(testcase):
testcase.put()
return

if environment.is_minimization_supported():
if environment.is_minimization_supported() or environment.get_value(
'MINIMIZE_FUZZER_OVERRIDE'):
# For supported environments, just create the minimize task for now.
# Once minimization is complete, it automatically creates the rest of the
# needed tasks.
Expand Down

0 comments on commit af2907b

Please sign in to comment.