mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-04-27 15:46:21 +00:00
Make component_check_test_cases more -q frienly
Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>
This commit is contained in:
parent
dfb114a843
commit
a9119167e0
|
@ -675,7 +675,12 @@ component_check_names () {
|
||||||
|
|
||||||
component_check_test_cases () {
|
component_check_test_cases () {
|
||||||
msg "Check: test case descriptions" # < 1s
|
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 () {
|
component_check_doxygen_warnings () {
|
||||||
|
|
Loading…
Reference in a new issue