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:
Alex Deymo 2021-06-11 16:15:53 +02:00 committed by GitHub
parent 226c89d5d6
commit 682007210b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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()