Skip to content

Commit

Permalink
Apply suggestions from grafikbot review, and revert run duration
Browse files Browse the repository at this point in the history
  • Loading branch information
mborland committed Jan 15, 2025
1 parent a8475b9 commit f62e9f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fuzzing/Jamfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 <python.interpreter> ;

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 : <dependency> $(.make-corpus-script) ;
make $(min_corpus) : : common.MkDir ;

# Build the fuzzer
Expand Down

0 comments on commit f62e9f9

Please sign in to comment.