diff options
Diffstat (limited to 'test')
| -rwxr-xr-x | test/indent/shell.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/indent/shell.sh b/test/indent/shell.sh index 6f3447c3aa9..790656501d1 100755 --- a/test/indent/shell.sh +++ b/test/indent/shell.sh | |||
| @@ -5,6 +5,18 @@ setlock -n /tmp/getmail.lock && echo getmail isn\'t running | |||
| 5 | 5 | ||
| 6 | # adsgsdg | 6 | # adsgsdg |
| 7 | 7 | ||
| 8 | case $X in | ||
| 9 | foo) | ||
| 10 | do_something | ||
| 11 | ;; | ||
| 12 | arg=*) # bug#12953 | ||
| 13 | do_something_else_based_on_arg | ||
| 14 | ;; | ||
| 15 | *) | ||
| 16 | default | ||
| 17 | ;; | ||
| 18 | esac | ||
| 19 | |||
| 8 | echo -n $(( 5 << 2 )) | 20 | echo -n $(( 5 << 2 )) |
| 9 | # This should not be treated as a heredoc (bug#12770). | 21 | # This should not be treated as a heredoc (bug#12770). |
| 10 | 2 | 22 | 2 |