Sign in
code
/
git
/
5b5a7f5ebd2e2701ac6fa522866f22b885147c01
/
.
/
t
/
chainlint
/
return-loop.test
blob: ea76c3593ade55a542b096868590c0346ab11cfd [
file
]
test_expect_success
'return-loop'
'
while test $i -lt $((num - 5))
do
# LINT: "|| return {n}" valid loop escape outside subshell; no "&&" needed
git notes add -m "notes for commit$i" HEAD~$i || return 1
i=$((i + 1))
done
'