diff options
Diffstat (limited to 't/chainlint/complex-if-in-cuddled-loop.expect')
-rw-r--r-- | t/chainlint/complex-if-in-cuddled-loop.expect | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/t/chainlint/complex-if-in-cuddled-loop.expect b/t/chainlint/complex-if-in-cuddled-loop.expect new file mode 100644 index 0000000000..e66bb2d5d0 --- /dev/null +++ b/t/chainlint/complex-if-in-cuddled-loop.expect @@ -0,0 +1,9 @@ +2 (for i in a b c; do +3 if test "$(echo $(waffle bat))" = "eleventeen" && +4 test "$x" = "$y"; then +5 : +6 else +7 echo >file +8 fi ?!LINT: missing '|| exit 1'?! +9 done) && +10 test ! -f file |