Skip to content

Commit

Permalink
dont save after abort
Browse files Browse the repository at this point in the history
  • Loading branch information
mzuenni committed Nov 19, 2024
1 parent 07fe59c commit 44517c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/fuzz.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def save_test(self, bar):
self.saved = True
save = True
# only save rule if we set self.saved to True
if save:
if save and not self.fuzz.queue.aborted:
localbar = bar.start(f'{self.i}: {self.command}')
localbar.log('Saving testcase in generators.yaml.')
localbar.done()
Expand Down

0 comments on commit 44517c4

Please sign in to comment.