From 93dadf1fdd41c8cd5ff266b70747f58b45e71fca Mon Sep 17 00:00:00 2001 From: Roman Date: Fri, 22 May 2026 15:24:37 +0800 Subject: [PATCH] fix: lower default run for afl to 30s --- Justfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Justfile b/Justfile index e1071b1..03db770 100644 --- a/Justfile +++ b/Justfile @@ -179,11 +179,11 @@ afl-macos-teardown: # Linux: Build AFL++ from source (apt packages are several major versions # behind): see https://github.com/AFLplusplus/AFLplusplus # -# Usage: just fuzz-afl # all targets, 120 s each +# Usage: just fuzz-afl # all targets, 30 s each # just fuzz-afl "" 60 # all targets, 60 s each -# just fuzz-afl fuzz_state_transition # single target, 120 s +# just fuzz-afl fuzz_state_transition # single target, 30 s # just fuzz-afl fuzz_state_transition 300 # single target, 300 s -fuzz-afl TARGET="" TIME="120": +fuzz-afl TARGET="" TIME="30": #!/bin/bash set -euo pipefail TARGET="{{TARGET}}"