cmd/xfs/tools/README.auto-qa 1.1 Renamed to cmd/xfstests/tools/README.auto-qa
[xfstests-dev.git] / 011
1 #! /bin/sh
2 # XFS QA Test No. 011
3 # $Id: 1.1 $
4 #
5 # dirstress
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2000 Silicon Graphics, Inc.  All Rights Reserved.
9
10 # This program is free software; you can redistribute it and/or modify it
11 # under the terms of version 2 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, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17
18 # Further, this software is distributed without any warranty that it is
19 # free of the rightful claim of any third person regarding infringement
20 # or the like.  Any license provided herein, whether implied or
21 # otherwise, applies only to this software file.  Patent licenses, if
22 # any, provided herein do not apply to combinations of this program with
23 # other software, or any other product whatsoever.
24
25 # You should have received a copy of the GNU General Public License along
26 # with this program; if not, write the Free Software Foundation, Inc., 59
27 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
28
29 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
30 # Mountain View, CA  94043, or:
31
32 # http://www.sgi.com 
33
34 # For further information regarding this notice, see: 
35
36 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
37 #-----------------------------------------------------------------------
38 #
39 # creator
40 owner=dxm@sgi.com
41
42 seq=`basename $0`
43 echo "QA output created by $seq"
44
45 # get standard environment, filters and checks
46 . ./common.rc
47 . ./common.filter
48
49 here=`pwd`
50 tmp=/tmp/$$
51 status=0        # success is the default!
52 out=$TEST_DIR/dirstress.$$
53 trap "rm -f $tmp.*; _cleanup; exit \$status" 0 1 2 3 15
54
55 _cleanup()
56 {
57     rm -rf $out
58 }
59
60 # get standard environment, filters and checks
61 . ./common.rc
62 . ./common.filter
63
64 count=1000
65 if ! mkdir $out
66 then
67     echo "!! couldn't mkdir $out"
68     status=1
69     exit
70 fi
71
72 rm -f $seq.out.full
73
74 _test()
75 {
76     test="$1"
77     args="$2"
78     count="$3"
79     
80     echo "*** TEST $test $args -f <count>"
81     if ! $here/src/dirstress -d $out -f $count $args >$tmp.out 2>&1
82     then
83         echo "    dirstress failed"
84         echo "*** TEST $test -d $out -f $count $args" >>$seq.out.full
85         cat $tmp.out >>$seq.out.full
86         status=1
87     fi
88 }
89
90 # dirstress doesn't check returns - this is a crash & burn test.
91
92 count=1000
93 _test 1 "-p 1 -n 1" $count
94 _test 2 "-p 5 -n 1" $count
95 _test 3 "-p 5 -n 5" $count
96
97 # if error
98 exit