8749afa4fd99a7ab8f75907cb45c4a719d110ad3
[xfstests-dev.git] / tests / xfs / 110
1 #! /bin/bash
2 # FS QA Test No. 110
3 #
4 # Incorrect dir2 freetab warning case from Masanori Tsuda.
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2005 Silicon Graphics, Inc.  All Rights Reserved.
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms 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,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write the Free Software Foundation,
20 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #
22 #-----------------------------------------------------------------------
23 #
24
25 seq=`basename $0`
26 echo "QA output created by $seq"
27
28 here=`pwd`
29 tmp=/tmp/$$
30 status=1        # failure is the default!
31 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
32
33 # get standard environment, filters and checks
34 . ./common.rc
35 . ./common.filter
36
37 # real QA test starts here
38 _supported_fs xfs
39 _supported_os Linux
40 _require_scratch
41
42 # real QA test starts here
43 umount $SCRATCH_DEV 2>/dev/null
44 _scratch_mkfs_xfs | _filter_mkfs 2>$tmp.mkfs
45
46 STR1=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
47 STR2=BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
48 STR3=CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
49
50 #------------------------------------------------
51 # Free Block No. | Data Entry No. (Start - End) |
52 #       1        |     10000001 - 10030599      |
53 #       2        |     10030600 - 10061199      |
54 #       3        |     10061200 - 10091799      |
55 #------------------------------------------------
56 # 15 Data Entries / 1 Data Block                |
57 #------------------------------------------------
58
59 _scratch_mount
60 mkdir -p $SCRATCH_MNT/test
61
62 I=10000001
63 E=10030600
64 while [ $I -le $E ]
65 do
66     echo > $SCRATCH_MNT/test/${STR1}${STR2}${STR3}${I}
67     let I=$I+1
68     [ $[$I % 1000] -eq 0 ] && echo "Created $I/$E"
69 done
70 wait
71
72 sync
73
74 I=10030585
75 E=10030599
76 while [ $I -le $E ]
77 do
78     rm $SCRATCH_MNT/test/${STR1}${STR2}${STR3}${I} &
79     let I=$I+1
80 done
81 wait
82
83 _check_scratch_fs
84
85 status=0
86 exit