]> git.ipfire.org Git - thirdparty/git.git/blame - t/chainlint/if-then-else.expect
The 20th batch
[thirdparty/git.git] / t / chainlint / if-then-else.expect
CommitLineData
03763e68
JK
12 (
23 if test -n ""
34 then
e44f15ba 45 echo very ?!LINT: missing '&&'?!
03763e68
JK
56 echo empty
67 elif test -z ""
78 then
89 echo foo
910 else
1011 echo foo &&
1112 cat <<-\EOF
1213 bar
1314 EOF
e44f15ba 1415 fi ?!LINT: missing '&&'?!
03763e68
JK
1516 echo poodle
1617 ) &&
1718 (
1819 if test -n ""; then
1920 echo very &&
2021 echo empty
2122 fi
2223 )