Add GPL license plate to SGI's test files.
[xfstests-dev.git] / 118
1 #! /bin/sh
2 #
3 #-----------------------------------------------------------------------
4 # Copyright (c) 2000-2005 Silicon Graphics, Inc.  All Rights Reserved.
5 #
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License as
8 # published by the Free Software Foundation.
9 #
10 # This program is distributed in the hope that it would be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write the Free Software Foundation,
17 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18 #
19 #-----------------------------------------------------------------------
20 #
21 # FS QA Test No. 118
22 #
23 # To test out pv#940675 crash in xfs_trans_brelse + quotas
24 # Without the fix, this will create an ASSERT failure in debug kernels
25 # and crash a non-debug kernel.
26 #
27 # creator
28 owner=tes@crackle.melbourne.sgi.com
29
30 seq=`basename $0`
31 echo "QA output created by $seq"
32
33 here=`pwd`
34 tmp=/tmp/$$
35 status=1        # failure is the default!
36 trap "_cleanup; exit \$status" 0 1 2 3 15
37
38 _cleanup()
39 {
40     cd /
41     rm -f $tmp.*
42 }
43
44 # get standard environment, filters and checks
45 . ./common.rc
46 . ./common.filter
47 . ./common.quota
48
49 # real QA test starts here
50
51 # Modify as appropriate.
52 _supported_fs xfs
53 _supported_os IRIX Linux
54
55 _require_scratch
56 _require_quota
57
58 _chowning_file()
59 {
60         file=file.chown
61         let start=$1
62         let limit=$2
63         let delta=$3
64
65         cd $SCRATCH_MNT
66         let count=$start
67         while (( count < limit )); do
68             touch $file
69             chown $count.$count $file
70             echo -n "."
71             let count=count+delta
72         done
73         echo ""
74 }
75
76
77 echo "mkfs on scratch"
78 _scratch_mkfs_xfs >$seq.full
79
80 echo "mount with quotas"
81 export MOUNT_OPTIONS="-o uquota"
82 _scratch_mount
83
84 echo "creating quota file with holes"
85 _chowning_file 1000 2000 100
86
87 echo "now fill in the holes"
88 _chowning_file 1000 2000 1
89
90 echo "look at the final file ownership for fun"
91 ls -l $SCRATCH_MNT/* \
92 | $AWK_PROG 'NF > 2 {print $3, $4, $NF}' \
93 | sed "s#$SCRATCH_MNT#SCRATCH_MNT#g"
94
95 # success, all done
96 status=0
97 exit