2ecbca2950f1e7702826cf8c19e27927f5f3d732
[xfstests-dev.git] / 075
1 #! /bin/sh
2 # FS 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     cd /
52     rm -rf $testdir/fsx.* $tmp.*
53     _cleanup_testdir
54 }
55
56 # get standard environment, filters and checks
57 . ./common.rc
58 . ./common.filter
59
60 _do_test()
61 {
62     _n="$1"
63     _param="$2"
64
65     out=$testdir/fsx
66     rm -rf $out
67     if ! mkdir $out
68     then
69         echo "    failed to mkdir $out"
70         status=1
71         exit
72     fi
73
74     echo ""
75     echo "-----------------------------------------------"
76     echo "fsx.$_n : $_param"
77     echo "-----------------------------------------------"
78
79     if [ "$FSTYP" = "nfs" ]
80     then
81         if [ "$_n" = "1" -o "$_n" = "3" ]
82         then
83             # HACK: nfs don't handle preallocation (-x) so just skip this test
84             return
85         fi
86     fi
87
88     # This cd and use of -P gets full debug on $here (not TEST_DEV)
89     cd $out
90     if ! $here/ltp/fsx $_param -P $here $seq.$_n >/dev/null
91     then
92         echo "    fsx ($_param) returned $? - see $seq.$_n.full"
93         mv $seq.$_n.fsxlog $here/$seq.$_n.full
94         status=1
95         exit
96     fi
97
98     cd $here
99     _check_test_fs
100 }
101
102
103 # real QA test starts here
104 _supported_fs xfs udf nfs
105 _supported_os IRIX Linux
106
107 _setup_testdir
108
109 rm -f $here/$seq.full
110 echo "brevity is wit..."
111
112 _check_test_fs
113
114 # Options:
115 # -d: debug output for all operations
116 # -l flen: the upper bound on file size (default 262144)
117 # -o oplen: the upper bound on operation size
118 # -N numops: total # operations to do (default infinity)
119 # -P: save .fsxlog and .fsxgood files in dirpath (default ./)
120 # -S seed: for random # generator (default 1) 0 gets timestamp
121 # -x: pre-allocate file space, exercising unwritten extents
122
123 size10=`expr 10 \* 1024 \* 1024`        # 10 megabytes
124
125 _do_test 0 "-d -N 1000 -S 0"
126 _do_test 1 "-d -N 1000 -S 0 -x"
127 _do_test 2 "-d -N 25000 -l $size10 -S 0"
128 _do_test 3 "-d -N 25000 -l $size10 -S 0 -x"
129
130 rm -f $seq.*.fsx{good,log}
131 exit 0