summaryrefslogtreecommitdiff
path: root/t/chainlint/for-loop.test
blob: 7db76262bc2e0089ea97581417b7ca95b2c9c2b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(
# LINT: 'for', 'do', 'done' do not need "&&"
	for i in a b c
	do
# LINT: missing "&&" on 'echo'
		echo $i
# LINT: last statement of while does not need "&&"
		cat <<-\EOF
		bar
		EOF
# LINT: missing "&&" on 'done'
	done
 
# LINT: 'do' on same line as 'for'
	for i in a b c; do
		echo $i &&
		cat $i
	done
)