xfstests: cleanup duplicates in all tests
[xfstests-dev.git] / tests / xfs / 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 seqres=$RESULT_DIR/$seq
29 echo "QA output created by $seq"
30
31 here=`pwd`
32 tmp=/tmp/$$
33 status=1        # failure is the default!
34 trap "_cleanup; exit \$status" 0 1 2 3 15
35
36 _cleanup()
37 {
38     cd /
39     rm -f $tmp.*
40 }
41
42 # get standard environment, filters and checks
43 . ./common/rc
44 . ./common/filter
45 . ./common/quota
46
47 # real QA test starts here
48
49 # Modify as appropriate.
50 _supported_fs xfs
51 _supported_os IRIX Linux
52
53 _require_scratch
54 _require_xfs_quota
55
56 _chowning_file()
57 {
58         file=file.chown
59         let start=$1
60         let limit=$2
61         let delta=$3
62
63         cd $SCRATCH_MNT
64         let count=$start
65         while (( count < limit )); do
66             touch $file
67             chown $count.$count $file
68             echo -n "."
69             let count=count+delta
70         done
71         echo ""
72 }
73
74 echo "mkfs on scratch"
75 _scratch_mkfs_xfs >$seqres.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