Keep packaging scripts in sync across all of the packages were maintaining here
[xfstests-dev.git] / 087
1 #! /bin/sh
2 # FS QA Test No. 087
3 #
4 # * like 086 but want to create more/different kinds of metadata
5 #   and so will use fsstress
6 # * also can interrupt metadata with godown
7 #
8 #-----------------------------------------------------------------------
9 # Copyright (c) 2000-2004 Silicon Graphics, Inc.  All Rights Reserved.
10
11 # This program is free software; you can redistribute it and/or modify it
12 # under the terms of version 2 of the GNU General Public License as
13 # published by the Free Software Foundation.
14
15 # This program is distributed in the hope that it would be useful, but
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18
19 # Further, this software is distributed without any warranty that it is
20 # free of the rightful claim of any third person regarding infringement
21 # or the like.  Any license provided herein, whether implied or
22 # otherwise, applies only to this software file.  Patent licenses, if
23 # any, provided herein do not apply to combinations of this program with
24 # other software, or any other product whatsoever.
25
26 # You should have received a copy of the GNU General Public License along
27 # with this program; if not, write the Free Software Foundation, Inc., 59
28 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
29
30 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
31 # Mountain View, CA  94043, or:
32
33 # http://www.sgi.com 
34
35 # For further information regarding this notice, see: 
36
37 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
38 #-----------------------------------------------------------------------
39 #
40 # creator
41 owner=tes@melbourne.sgi.com
42
43 seq=`basename $0`
44 echo "QA output created by $seq"
45
46 here=`pwd`
47 tmp=/tmp/$$
48 status=1        # failure is the default!
49 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
50
51 # get standard environment, filters and checks
52 . ./common.rc
53 . ./common.filter
54 . ./common.log
55
56 _do_meta()
57 {
58     out=$SCRATCH_MNT/fsstress
59     count=10000
60     param="-p 4 -z -f rmdir=10 -f link=10 -f creat=10 -f mkdir=10 \
61            -f rename=30 -f stat=30 -f unlink=30 -f truncate=20"
62     _echofull "calling fsstress $param -m8 -n $count"
63     if ! $here/ltp/fsstress $param $FSSTRESS_AVOID -m 8 -n $count -d $out >>$seq.full 2>&1
64     then
65         _echofull "fsstress failed"
66     fi
67 }
68
69 # real QA test starts here
70 _supported_fs xfs
71 _supported_os IRIX Linux
72
73 rm -f $seq.full $tmp.*
74 _require_scratch
75 _require_v2log 
76
77 echo "*** init FS"
78 umount $SCRATCH_DEV >/dev/null 2>&1
79
80 cat >$tmp.seq.params <<EOF
81 # mkfs-opt             mount-opt
82 # ------------------------------
83   version=2            logbsize=32k
84   version=2,su=4096    logbsize=32k
85   version=2,su=32768   logbsize=32k
86   version=2            logbsize=64k
87   version=2,su=64k     logbsize=64k
88   version=2            logbsize=128k
89   version=2,su=128k    logbsize=128k
90   version=2            logbsize=256k
91   version=2,su=256k    logbsize=256k
92 EOF
93
94 cat $tmp.seq.params \
95 | while read mkfs mnt restofline
96 do
97     if [ "$mkfs" = "#" ]; then 
98         continue
99     fi
100
101     echo "--- mkfs=$mkfs, mnt=$mnt ---"
102     export MKFS_OPTIONS="-l $mkfs"
103     export MOUNT_OPTIONS="-o $mnt"
104
105     # mkfs the FS
106     _echofull "mkfs"
107     _scratch_mkfs_xfs >>$seq.full 2>&1
108     if [ $? -ne 0 ] ; then 
109         _echofull "mkfs failed: $MKFS_OPTIONS"
110         continue
111     fi
112
113     # mount the FS
114     _echofull "mount"
115     if ! _scratch_mount >>$seq.full 2>&1; then
116         _echofull "mount failed: $MOUNT_OPTIONS"
117         continue
118     fi
119
120     # create the metadata
121     _do_meta
122
123     # check before on what FS should look like
124     _echofull "ls -RF SCRATCH_MNT"
125     ls -RF $SCRATCH_MNT >$tmp.ls1
126
127     _echofull "godown"
128     src/godown -v -f $SCRATCH_MNT >> $seq.full
129
130     _echofull "unmount"
131     umount $SCRATCH_DEV >>$seq.full 2>&1 \
132         || _fail "umount failed"
133
134     _echofull "logprint after going down..."
135     _print_logstate
136
137     _full "logprint headers"
138     _scratch_xfs_logprint -n >>$seq.full 2>&1
139
140     _echofull "mount with replay"
141     _scratch_mount >>$seq.full 2>&1 \
142         || _fail "mount failed: $MOUNT_OPTIONS"
143
144     # check on what FS looks like after log recovery
145     _echofull "ls -RF SCRATCH_MNT"
146     ls -RF $SCRATCH_MNT >$tmp.ls2
147
148     _echofull "diff ls before and after"
149     diff -us $tmp.ls1 $tmp.ls2 | sed "s#$tmp#TMP#g"
150
151     _echofull "unmount"
152     umount $SCRATCH_MNT
153
154     _echofull "logprint after mount and replay..."
155     _print_logstate
156
157     if _check_scratch_fs; then
158         _echofull "filesystem is checked ok"
159     else
160         _echofull "filesystem is NOT ok"
161     fi
162 done
163
164 status=0 
165 exit