xfstests 241: run longer
[xfstests-dev.git] / 204
1 #! /bin/bash
2 # FS QA Test No. 204
3 #
4 # Test out ENOSPC flushing on small filesystems.
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2009 Christoph Hellwig.
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 # creator
24 owner=hch@lst.de
25
26 seq=`basename $0`
27 echo "QA output created by $seq"
28
29 here=`pwd`
30 tmp=/tmp/$$
31 status=1        # failure is the default!
32
33 # get standard environment, filters and checks
34 . ./common.rc
35 . ./common.filter
36
37 # real QA test starts here
38 _supported_fs generic
39 _supported_os Linux
40
41 _require_scratch
42
43 SIZE=`expr 104 \* 1024 \* 1024`
44 _scratch_mkfs_sized $SIZE  &> /dev/null
45 _scratch_mount
46
47 # fix the reserve block pool to a known size so that the enospc calculations
48 # work out correctly.
49 _scratch_resvblks 1024 > $seq.full 2>&1
50
51 for i in `seq 1 22500`; do
52     echo -n > $SCRATCH_MNT/$i
53     echo XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX > $SCRATCH_MNT/$i
54 done
55
56 # success, all done
57 echo "*** done"
58 rm -f $seq.full
59 status=0