mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
fd4094c3ca
Shell `for` and `while` loops do not terminate automatically just because a command fails within the loop body. Instead, the loop continues to iterate and eventually returns the exit status of the final command of the final iteration, which may not be the command which failed, thus it is possible for failures to go undetected. Consequently, it is important for test authors to explicitly handle failure within the loop body by terminating the loop manually upon failure. This can be done by returning a non-zero exit code from within the loop body (i.e. `|| return 1`) or exiting (i.e. `|| exit 1`) if the loop is within a subshell, or by manually checking `$?` and taking some appropriate action. Therefore, add logic to detect and complain about loops which lack explicit `return` or `exit`, or `$?` check. Signed-off-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
11 lines
135 B
Text
11 lines
135 B
Text
(
|
|
for i in a b c
|
|
do
|
|
echo $i ?!AMP?!
|
|
cat <<-EOF ?!LOOP?!
|
|
done ?!AMP?!
|
|
for i in a b c; do
|
|
echo $i &&
|
|
cat $i ?!LOOP?!
|
|
done
|
|
)
|