improve of cmpl.
[bush.git] / tests / dstack.tests
blob116e935f2267732c24fe75998f9ac59d0c980402
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 export LC_ALL=C
15 export LANG=C
17 dirs -c
18 # error -- non-existent directory
19 pushd /tmp/xxx-notthere
21 # errors -- empty stack
22 pushd
23 popd
25 # errors -- bad numeric arguments -- should not cause the script to exit
26 pushd -m
27 popd -m
28 dirs -m
29 dirs 7
31 MYDIR=$PWD
32 unalias cd 2>/dev/null
34 unalias -a
36 command cd -P /
37 command pwd -P  # better be `/'
39 case "$OLDPWD" in
40 $MYDIR) echo ok ;;
41 *)      echo oops -- bad \$OLDPWD ;;
42 esac
44 pushd /usr
45 echo $PWD $OLDPWD
46 dirs
47 echo ${DIRSTACK[@]}
49 # this should not change the directory stack at all
50 pushd -n +0
51 dirs
53 popd
54 pushd /usr
56 pushd /etc
57 dirs
58 dirs -l
59 dirs -v
61 # two consecutive `pushd's should swap the top two stack elements, then
62 # swap them back, leaving the stack intact
63 pushd
64 pushd
66 pushd /tmp
67 echo ${DIRSTACK[0]} ; dirs +0
68 echo ${DIRSTACK[2]} ; dirs +2
70 # these should be errors, but not affect the directory stack
71 dirs +9; dirs -9
72 pushd +9 ; pushd -9
73 popd +9 ; popd -9
75 popd -n +2
76 dirs
77 echo ${DIRSTACK[@]}
79 pushd -n /usr
80 echo $PWD
81 dirs
82 echo ${DIRSTACK[@]}
84 builtin pwd
86 DIRSTACK[1]=/bin
87 dirs
89 builtin pwd
90 popd +2
91 builtin pwd -L
92 pushd -1
93 dirs
94 echo ${DIRSTACK[0]}
96 dirs -c
97 dirs
99 # this is for the benefit of pure coverage
100 cd "$MYDIR"