From a9119167e0739ca77b0ac24804618a8b8bfaaa53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Tue, 2 Jun 2020 11:51:40 +0200 Subject: [PATCH] Make component_check_test_cases more -q frienly MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Manuel Pégourié-Gonnard --- tests/scripts/all.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/scripts/all.sh b/tests/scripts/all.sh index e89e5ea27..1640dbe48 100755 --- a/tests/scripts/all.sh +++ b/tests/scripts/all.sh @@ -675,7 +675,12 @@ component_check_names () { component_check_test_cases () { msg "Check: test case descriptions" # < 1s - record_status tests/scripts/check-test-cases.py + if [ $QUIET -eq 1 ]; then + OPT='--quiet' + else + OPT='' + fi + record_status tests/scripts/check-test-cases.py $OPT } component_check_doxygen_warnings () {