From 682007210b02f8b4ae46c7dd72645f675988746d Mon Sep 17 00:00:00 2001 From: Alex Deymo Date: Fri, 11 Jun 2021 16:15:53 +0200 Subject: [PATCH] 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. --- projects/libjxl/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/libjxl/build.sh b/projects/libjxl/build.sh index 2b807fc6e..091c55a6c 100755 --- a/projects/libjxl/build.sh +++ b/projects/libjxl/build.sh @@ -43,8 +43,8 @@ build_args=( # Generate a fuzzer corpus. mkdir -p djxl_fuzzer_corpus - tools/fuzzer_corpus -r djxl_fuzzer_corpus - zip -j "${OUT}/djxl_fuzzer_seed_corpus.zip" djxl_fuzzer_corpus/* + tools/fuzzer_corpus -q -r 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()