b4ebee0dc117306aa9f2127df4ccac714de6e190
[xfstests-dev.git] / 013
1 #! /bin/sh
2 # XFS QA Test No. 013
3 #
4 # fsstress
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2000-2002 Silicon Graphics, Inc.  All Rights Reserved.
8
9 # This program is free software; you can redistribute it and/or modify it
10 # under the terms of version 2 of the GNU General Public License as
11 # published by the Free Software Foundation.
12
13 # This program is distributed in the hope that it would be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16
17 # Further, this software is distributed without any warranty that it is
18 # free of the rightful claim of any third person regarding infringement
19 # or the like.  Any license provided herein, whether implied or
20 # otherwise, applies only to this software file.  Patent licenses, if
21 # any, provided herein do not apply to combinations of this program with
22 # other software, or any other product whatsoever.
23
24 # You should have received a copy of the GNU General Public License along
25 # with this program; if not, write the Free Software Foundation, Inc., 59
26 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
27
28 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
29 # Mountain View, CA  94043, or:
30
31 # http://www.sgi.com 
32
33 # For further information regarding this notice, see: 
34
35 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
36 #-----------------------------------------------------------------------
37 #
38 # creator
39 owner=dxm@sgi.com
40
41 seq=`basename $0`
42 echo "QA output created by $seq"
43
44 here=`pwd`
45 tmp=/tmp/$$
46 status=0        # success is the default!
47 trap "_cleanup; exit \$status" 0 1 2 3 15
48
49 _cleanup()
50 {
51     # we might get here with a RO FS
52     mount -o remount,rw $TEST_DEV >/dev/null 2>&1
53     # now kill!
54     rm -rf $TEST_DIR/fsstress.$$.*
55 }
56
57 _filesize()
58 {
59     ls -l $1 | $AWK_PROG '{print "    filesize = " $5}'
60 }
61
62 # get standard environment, filters and checks
63 . ./common.rc
64 . ./common.filter
65
66 _do_test()
67 {
68     _n="$1"
69     _param="$2"
70     _count="$3"
71     
72     failed=0
73     
74     out=$TEST_DIR/fsstress.$$.$_n
75     rm -rf $out
76     if ! mkdir $out
77     then
78         echo "    failed to mkdir $out"
79         status=1
80         exit
81     fi
82     
83     echo ""
84     echo "-----------------------------------------------"
85     echo "fsstress.$_n : $_param"
86     echo "-----------------------------------------------"
87     # -v >$tmp.out
88     # -m limits number of users/groups so check doesn't fail (malloc) later
89     if ! $here/ltp/fsstress $_param $FSSTRESS_AVOID -m 8 -n $_count -d $out >/dev/null 2>&1
90     then
91         echo "    fsstress (count=$_count) returned $? - see $seq.full"
92         
93         echo "--------------------------------------"       >>$here/$seq.full
94         echo "$_n - output from fsstress:"                  >>$here/$seq.full
95         echo "--------------------------------------"       >>$here/$seq.full
96         echo "<NOT LOGGED>"                                 >>$here/$seq.full
97         #cat $tmp.out                                       >>$here/$seq.full
98         status=1
99     fi
100
101     _check_test_fs
102 }
103
104
105 # real QA test starts here
106
107 rm -f $here/$seq.full
108 echo "brevity is wit..."
109
110 count=2000
111 procs=20
112
113 _check_test_fs
114
115 # the default
116
117 _do_test 1 "-r" $count
118
119 # and the default with multiprocess
120
121 _do_test 2 "-p $procs -r" $count
122
123 # from Glen's notes
124
125 _do_test 3 "-p 4 -z -f rmdir=10 -f link=10 -f creat=10 -f mkdir=10 -f rename=30 -f stat=30 -f unlink=30 -f truncate=20" $count
126
127 exit
128
129 # Test with error injection:
130
131 # (error injection)
132 # fsstress -n 1000 -d $scratch -p 4 -z -f rmdir=10 -f link=10 -f creat=10 \
133 #          -f mkdir=10 -f rename=30 -f stat=30 -f unlink=30 -f truncate=20 \
134 #          -e 1
135
136 # Error values 1 - 6 test IFLUSH
137 #         1 - corrupt buffer being flushed to di_core.di_magic
138 #         2 - corrupt inode being flushed i_d.di_magic
139 #         3 - corrupt IFREG format check
140 #         4 - corrupt IFDIR format check
141 #         5 - corrupt i_d.di_nextents
142 #         6 - corrupt i_d.di_forkoff > sb_inodesize