From f62e9f92193c1c22180d30cceb14f745eb87f662 Mon Sep 17 00:00:00 2001 From: Matt Borland Date: Wed, 15 Jan 2025 11:13:41 -0500 Subject: [PATCH] Apply suggestions from grafikbot review, and revert run duration --- fuzzing/Jamfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fuzzing/Jamfile b/fuzzing/Jamfile index 684dc178..3e10a7c2 100644 --- a/fuzzing/Jamfile +++ b/fuzzing/Jamfile @@ -32,20 +32,20 @@ rule make-corpus ( target : sources + : properties * ) } actions make-corpus { - "$(PYTHON:E=python)" "$(RUNNER)" $(<) $(>) + "$(PYTHON:E=python)" "$(RUNNER)" "$(<)" "$(>)" } toolset.flags $(__name__).make-corpus PYTHON ; for local fuzzer in $(all_fuzzers) { - local fuzz_time = 60 ; + local fuzz_time = 30 ; local corpus = /tmp/corpus/$(fuzzer) ; local min_corpus = /tmp/mincorpus/$(fuzzer) ; local seed_corpus = $(HERE)/seedcorpus/$(fuzzer) ; local seed_files = [ glob "$(seed_corpus)/*" ] ; # Create the output corpus directories - make $(corpus) : $(seed_files) : make-corpus ; + make $(corpus) : $(seed_files) : make-corpus : $(.make-corpus-script) ; make $(min_corpus) : : common.MkDir ; # Build the fuzzer