Fix Makefile botch in test source file name from last checkin.
[xfstests-dev.git] / 075
1 #! /bin/sh
2 # XFS QA Test No. 075
3 #
4 # fsx
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2000-2003 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=nathans@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     rm -rf $TEST_DIR/fsx.* $tmp.*
52 }
53
54 # get standard environment, filters and checks
55 . ./common.rc
56 . ./common.filter
57
58 _do_test()
59 {
60     _n="$1"
61     _param="$2"
62
63     out=$TEST_DIR/fsx
64     rm -rf $out
65     if ! mkdir $out
66     then
67         echo "    failed to mkdir $out"
68         status=1
69         exit
70     fi
71
72     echo ""
73     echo "-----------------------------------------------"
74     echo "fsx.$_n : $_param"
75     echo "-----------------------------------------------"
76
77     # This cd and use of -P gets full debug on $here (not TEST_DEV)
78     cd $out
79     if ! $here/ltp/fsx $_param -P $here $seq.$_n >/dev/null
80     then
81         echo "    fsx ($_param) returned $? - see $seq.$_n.full"
82         mv $seq.$_n.fsxlog $here/$seq.$_n.full
83         status=1
84         exit
85     fi
86
87     cd $here
88     _check_test_fs
89 }
90
91
92 # real QA test starts here
93
94 rm -f $here/$seq.full
95 echo "brevity is wit..."
96
97 _check_test_fs
98
99 # Options:
100 # -d: debug output for all operations
101 # -l flen: the upper bound on file size (default 262144)
102 # -o oplen: the upper bound on operation size
103 # -N numops: total # operations to do (default infinity)
104 # -P: save .fsxlog and .fsxgood files in dirpath (default ./)
105 # -S seed: for random # generator (default 1) 0 gets timestamp
106 # -x: pre-allocate file space, exercising unwritten extents
107
108 size10=`expr 10 \* 1024 \* 1024`        # 10 megabytes
109
110 _do_test 0 "-d -N 1000 -S 0"
111 _do_test 1 "-d -N 1000 -S 0 -x"
112 _do_test 2 "-d -N 25000 -l $size10 -S 0"
113 _do_test 3 "-d -N 25000 -l $size10 -S 0 -x"
114
115 rm -f $seq.*.fsx{good,log}
116 exit 0