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