mirror of https://github.com/google/oss-fuzz.git
libjxl: make the fuzzer corpus generation step quiet (#5913)
fuzzer_corpus generators emits two lines per test case generated and the following zip command emits another line for each generated test case. This patch makes both commands quiet which facilitates spotting error messages.
This commit is contained in:
parent
226c89d5d6
commit
682007210b
|
@ -43,8 +43,8 @@ build_args=(
|
||||||
|
|
||||||
# Generate a fuzzer corpus.
|
# Generate a fuzzer corpus.
|
||||||
mkdir -p djxl_fuzzer_corpus
|
mkdir -p djxl_fuzzer_corpus
|
||||||
tools/fuzzer_corpus -r djxl_fuzzer_corpus
|
tools/fuzzer_corpus -q -r djxl_fuzzer_corpus
|
||||||
zip -j "${OUT}/djxl_fuzzer_seed_corpus.zip" djxl_fuzzer_corpus/*
|
zip -q -j "${OUT}/djxl_fuzzer_seed_corpus.zip" djxl_fuzzer_corpus/*
|
||||||
)
|
)
|
||||||
|
|
||||||
# Build the fuzzers in release mode but force the inclusion of JXL_DASSERT()
|
# Build the fuzzers in release mode but force the inclusion of JXL_DASSERT()
|
||||||
|
|
Loading…
Reference in New Issue