Fix a missing line in new output file for QA test 077
[xfstests-dev.git] / 074
1 #! /bin/sh
2 # XFS QA Test No. 074
3 #
4 # fstest
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/fstest.$$.* $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/fstest.$$.$_n
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 "fstest.$_n : $_param"
75     echo "-----------------------------------------------"
76     if ! $here/src/fstest $_param -p $out >> $seq.full
77     then
78         echo "    fstest ($_param) returned $? - see $seq.full"
79         status=1
80         exit
81     fi
82
83     _check_test_fs
84 }
85
86
87 # real QA test starts here
88
89 rm -f $here/$seq.full
90 echo "brevity is wit..."
91
92 _check_test_fs
93
94 # Options:
95 # -F                    generate files with holes  (default=no)
96 # -n num_children       set number of child processes (default=1)
97 # -f num_files          set number of files (default=1)
98 # -s file_size          set file sizes (default=1MiB)
99 # -b block_size         set block (IO) size (default=1024)
100 # -l loops              set loop count (default=100)
101 # -m                    use mmap (default=no)
102 # -S                    use synchronous IO (default=no)
103 # -P                    preallocate space (default=no)
104
105 size10=`expr 10 \* 1024 \* 1024`        # 10 megabytes
106 size30=`expr 30 \* 1024 \* 1024`        # 30 megabytes
107
108 _do_test 0 ""                   # defaults
109
110 _do_test 1 "-s $size10 -b 8192 -m"
111
112 _do_test 2 "-n 3 -Fp -f 10 -s $size30 -b 512"
113
114 _do_test 3 "-n 3 -Fp -f 10 -s $size30 -b 512 -m"
115