Skip to content

Commit

Permalink
Fuzzing: Add quoting and dependency on script
Browse files Browse the repository at this point in the history
  • Loading branch information
Flamefire committed Jan 15, 2025
1 parent dc6d04d commit bb9eec5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fuzzing/Jamfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ 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> ;

Expand All @@ -43,7 +43,7 @@ for local fuzzer in $(all_fuzzers)
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 bb9eec5

Please sign in to comment.