Skip to content

Commit f62e9f9

Browse files
committed
Apply suggestions from grafikbot review, and revert run duration
1 parent a8475b9 commit f62e9f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

fuzzing/Jamfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,20 +32,20 @@ rule make-corpus ( target : sources + : properties * )
3232
}
3333
actions make-corpus
3434
{
35-
"$(PYTHON:E=python)" "$(RUNNER)" $(<) $(>)
35+
"$(PYTHON:E=python)" "$(RUNNER)" "$(<)" "$(>)"
3636
}
3737
toolset.flags $(__name__).make-corpus PYTHON <python.interpreter> ;
3838

3939
for local fuzzer in $(all_fuzzers)
4040
{
41-
local fuzz_time = 60 ;
41+
local fuzz_time = 30 ;
4242
local corpus = /tmp/corpus/$(fuzzer) ;
4343
local min_corpus = /tmp/mincorpus/$(fuzzer) ;
4444
local seed_corpus = $(HERE)/seedcorpus/$(fuzzer) ;
4545
local seed_files = [ glob "$(seed_corpus)/*" ] ;
4646

4747
# Create the output corpus directories
48-
make $(corpus) : $(seed_files) : make-corpus ;
48+
make $(corpus) : $(seed_files) : make-corpus : <dependency> $(.make-corpus-script) ;
4949
make $(min_corpus) : : common.MkDir ;
5050

5151
# Build the fuzzer

0 commit comments

Comments
 (0)