Merge branch 'ja/doc-synopsis-markup'
[git/gitster.git] / t / chainlint / while-loop.expect
blob2ba55821654bb89fedfe5fc88ef4c0afff6300e9
1 2 (
2 3       while true
3 4       do
4 5               echo foo ?!LINT: missing '&&'?!
5 6               cat <<-\EOF ?!LINT: missing '|| exit 1'?!
6 7               bar
7 8               EOF
8 9       done ?!LINT: missing '&&'?!
9 10 
10 11      while true; do
11 12              echo foo &&
12 13              cat bar ?!LINT: missing '|| exit 1'?!
13 14      done
14 15 )