xfstests: cleanup duplicates in all tests
[xfstests-dev.git] / tests / xfs / 096
1 #! /bin/bash
2 # FS QA Test No. 096
3 #
4 # test out mkfs_xfs output on IRIX/Linux and some of its error handling
5 # ensure pv#920679 is addressed
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2000-2004 Silicon Graphics, Inc.  All Rights Reserved.
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License as
12 # published by the Free Software Foundation.
13 #
14 # This program is distributed in the hope that it would be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write the Free Software Foundation,
21 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22 #
23 #-----------------------------------------------------------------------
24 #
25
26 seqfull=$0
27 seq=`basename $0`
28 seqres=$RESULT_DIR/$seq
29 echo "QA output created by $seq"
30
31 here=`pwd`
32 tmp=/tmp/$$
33 status=1        # failure is the default!
34 trap "_cleanup; exit \$status" 0 1 2 3 15
35
36 _cleanup()
37 {
38     cd /
39     rm -f $tmp.*
40 }
41
42 # get standard environment, filters and checks
43 . ./common/rc
44 . ./common/filter
45 . ./common/log
46
47 #
48 # filter out counts which will vary
49 #   - extsz, blocks, agsize, agcount, device name, rtextents
50 # filter out differences between linux and irix:
51 #   - sectsz on Linux
52 #   - mmr, mixed-case on IRIX
53 #   - lazy-count on IRIX
54 #   - inode-paths on IRIX
55 #   - trailing spaces on Linux but not on IRIX
56 #
57 # Example output:
58 #  meta-data=DEV isize=256    agcount=N, agsize=N blks
59 #  data     =                       bsize=4096   blocks=N, imaxpct=25
60 #           =                       sunit=65     swidth=65 blks, unwritten=1
61 #  naming   =version 2              bsize=4096
62 #  log      =internal log           bsize=4096   blocks=N, version=1
63 #           =                       sunit=0 blks
64 #  realtime =none                   extsz=65536  blocks=N, rtextents=N
65 #
66 _mkfs_filter()
67 {
68    tee -a $seqres.full | \
69    sed \
70         -e 's/extsz=[0-9][0-9]*[ ]*/extsz=N, /' \
71         -e 's/blocks=[0-9][0-9]*/blocks=N/' \
72         -e 's/imaxpct=[0-9][0-9]*/imaxpct=N/' \
73         -e 's/agsize=[0-9][0-9]*/agsize=N/' \
74         -e 's/agcount=[0-9][0-9]*/agcount=N/' \
75         -e 's/swidth=[0-9][0-9]* blks$/&, unwritten=1/' \
76         -e 's/rtextents=[0-9][0-9]*/rtextents=N/' \
77         -e 's/meta-data=[^ ]*/meta-data=DEV/' \
78         -e 's/ *isize/ isize/' \
79         -e '/ *= *sectsz=[0-9][0-9]* *attr=[0-9][0-9]*.*$/d' \
80         -e '/ *= *mmr=[0-9][0-9]* *$/d' \
81         -e 's/ *mixed-case=[YN]//' \
82         -e 's/ *ascii-ci=[01]//' \
83         -e 's/sectsz=[0-9][0-9]* *//' \
84         -e 's/, lazy-count.*//' \
85         -e '/inode-paths/d' \
86         -e 's/\(log[    ]*=\).*bsize/\1LOG                    bsize/' \
87         -e 's/\(realtime[       ]*=\).*extsz/\1REALTIME               extsz/' \
88         -e '/.*crc=/d' \
89         -e 's/ *$//' \
90    | grep -v parent
91 }
92
93 # real QA test starts here
94 rm -f $seqres.full
95
96 # Modify as appropriate.
97 _supported_fs xfs
98 _supported_os IRIX Linux
99 _require_scratch
100 _require_v2log
101
102 # choose .out file based on internal/external log
103 rm -f $seqfull.out
104 if [ "$USE_EXTERNAL" = yes ]; then
105         ln -s $seq.external $seqfull.out
106 else
107         ln -s $seq.internal $seqfull.out
108 fi
109
110 # maximum log record size
111 max_lr_size=`expr 256 \* 1024`
112
113 big_su=`expr $max_lr_size + 4096`
114
115 #
116 # Test out various mkfs param combinations
117 #
118 cat >$tmp.seq.params <<EOF
119 # su too big but must be a multiple of fs block size too
120   -l version=2,su=`expr $max_lr_size + 512`
121 # test log stripe greater than LR size
122   -l version=2,su=$big_su
123 # same test but get log stripe from data stripe
124   -l version=2 -d su=$big_su,sw=1
125 # test out data stripe
126   -l version=1 -d su=$big_su,sw=1
127 # test out data stripe the same but using sunit & swidth
128   -l version=1 -d sunit=`expr $big_su / 512`,swidth=`expr $big_su / 512`
129 EOF
130
131 #
132 # call mkfs in a loop for various params
133 #
134 echo ""
135 cat $tmp.seq.params \
136 | while read mkfs
137 do
138     if echo $mkfs | grep -q '^#'; then
139         # print out header & ignore comment
140         echo $mkfs
141         continue
142     fi
143     echo "--- mkfs=$mkfs ---"
144     export MKFS_OPTIONS="$mkfs"
145     _scratch_mkfs_xfs | _mkfs_filter
146     echo ""
147     echo ""
148 done
149
150 # success, all done
151 status=0
152 exit