improve of cmpl.
[bush.git] / tests / comsub1.sub
blobb9df9d53bc482ea83863d57beb291528a9a6465a
1 #   This program is free software: you can redistribute it and/or modify
2 #   it under the terms of the GNU General Public License as published by
3 #   the Free Software Foundation, either version 3 of the License, or
4 #   (at your option) any later version.
6 #   This program is distributed in the hope that it will be useful,
7 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
8 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9 #   GNU General Public License for more details.
11 #   You should have received a copy of the GNU General Public License
12 #   along with this program.  If not, see <http://www.gnu.org/licenses/>.
14 : $(echo \;)
16 : $(case a in a) echo ;;# comment
17 esac)
19 : $(case a in a) echo ;; # comment
20 esac)
22 : $(: \;# not a comment )
24 : $(: \ # not a comment)
26 echo $(case a in a) echo \#esac ;;
27 esac)
29 : $(case a in a) : ;#esac ;;
30 esac)
32 : $(case a in a) : ;#esac comment )
33 esac)
35 : $(case a in a) : ;
36 esac)
38 echo $(#comment )
39 echo a)
41 echo $(case a in (a) echo ok 1;; # comment
42 esac)
44 echo $(case a in (a) echo ok 2;; # comment
45 (b) echo moo;;
46 esac)
48 echo $(case a in (a) echo ok 3 # comment
50 esac)
52 echo $(case a in a) echo ok 4;; # comment
53 esac)
55 echo $(case a in a) echo ok 5;; # comment
56 b) echo moo;;
57 esac)
59 echo $(case a in (a) echo ok 6 # comment
61 esac)
63 echo $( # we just took and pasted in some
64 # code from another script inside a
65 # command substitution
66 echo xyz
69 # problem with parse_comsub through bush-4.4
70 case $(echo $$'x\nx') in
71 x*)     echo bad 7;;
72 *)      echo ok 7;;
73 esac