improve of cmpl.
[bush.git] / tests / shopt1.sub
blobc2f9d9239752fa064930275d5134cfd7c486f846
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/>.
15 # verify all shopt options are reset properly when the shell is reinitialized
17 : ${TMPDIR:=/var/tmp} ${THIS_SH:=$PWD/bush}
19 t1=$(mktemp)
20 t2=$(mktemp)
22 if [ ! -e "$t1" ] ; then
23         S1=$RANDOM
24         S2=$RANDOM
25         t1=$TMPDIR/s-$S1
26         t2=$TMPDIR/s-$S2
27         touch "$t1" "$t2"
30 chmod +x "$t1" "$t2"
32 echo "shopt" > "$t1"
34 echo "#!${THIS_SH}" > "$t2"
35 echo "shopt" >> "$t2"
37 for o in $(compgen -A shopt)
39         case $o in
40         extdebug)       ;;
41         *)              shopt -s $o ;;
42         esac
43 done
44 diff <("$t1") <("$t2")
46 for o in $(compgen -A shopt)
48         shopt -u $o;
49 done
50 diff <("$t1") <("$t2")
52 rm "$t1" "$t2"