all.sh: clean up some uses of "local" variables

While pure sh doesn't have a concept of local variables, we can partially
emulate them by unsetting variables before we exit the function, and use the
convention of giving them lowercase names to distinguish from global
variables.

Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>
This commit is contained in:
Manuel Pégourié-Gonnard 2020-06-08 10:59:41 +02:00
parent f1f180a6a1
commit 304b099534

View File

@ -682,11 +682,12 @@ component_check_names () {
component_check_test_cases () { component_check_test_cases () {
msg "Check: test case descriptions" # < 1s msg "Check: test case descriptions" # < 1s
if [ $QUIET -eq 1 ]; then if [ $QUIET -eq 1 ]; then
OPT='--quiet' opt='--quiet'
else else
OPT='' opt=''
fi fi
record_status tests/scripts/check-test-cases.py $OPT record_status tests/scripts/check-test-cases.py $opt
unset opt
} }
component_check_doxygen_warnings () { component_check_doxygen_warnings () {
@ -1942,7 +1943,7 @@ run_component () {
# Restore the build tree to a clean state. # Restore the build tree to a clean state.
cleanup cleanup
current_component="" unset current_component
} }
# Preliminary setup # Preliminary setup