tests: remove udf/101
[xfstests-dev.git] / tests / generic / 380
1 #! /bin/bash
2 # FS QA Test No. 380
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 generic
51 _supported_os IRIX Linux
52
53 _require_scratch
54 _require_quota
55 _require_xfs_quota_foreign
56
57 _chowning_file()
58 {
59         file=file.chown
60         let start=$1
61         let limit=$2
62         let delta=$3
63
64         cd $SCRATCH_MNT
65         let count=$start
66         while (( count < limit )); do
67             touch $file
68             chown $count.$count $file
69             echo -n "."
70             let count=count+delta
71         done
72         echo ""
73 }
74
75 echo "mkfs on scratch"
76 _scratch_mkfs >$seqres.full 2>&1
77
78 echo "mount with quotas"
79 export MOUNT_OPTIONS="-o usrquota"
80 _scratch_mount
81
82 echo "creating quota file with holes"
83 _chowning_file 1000 2000 100
84
85 echo "now fill in the holes"
86 _chowning_file 1000 2000 1
87
88 echo "look at the final file ownership for fun"
89 ls -l $SCRATCH_MNT/* \
90 | $AWK_PROG 'NF > 2 {print $3, $4, $NF}' \
91 | sed "s#$SCRATCH_MNT#SCRATCH_MNT#g"
92
93 # success, all done
94 status=0
95 exit