Crank up fsstress a whole lot, enable unwritten extents everywhere, remove need for...
[xfstests-dev.git] / 072
1 #! /bin/sh
2 # XFS QA Test No. 072
3 # $Id: 072,v 1.3 2003/07/08 05:05:43 fsgqa Exp $
4 #
5 # Check some unwritten extent boundary conditions
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2000-2003 Silicon Graphics, Inc.  All Rights Reserved.
9
10 # This program is free software; you can redistribute it and/or modify it
11 # under the terms of version 2 of the GNU General Public License as
12 # published by the Free Software Foundation.
13
14 # This program is distributed in the hope that it would be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17
18 # Further, this software is distributed without any warranty that it is
19 # free of the rightful claim of any third person regarding infringement
20 # or the like.  Any license provided herein, whether implied or
21 # otherwise, applies only to this software file.  Patent licenses, if
22 # any, provided herein do not apply to combinations of this program with
23 # other software, or any other product whatsoever.
24
25 # You should have received a copy of the GNU General Public License along
26 # with this program; if not, write the Free Software Foundation, Inc., 59
27 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
28
29 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
30 # Mountain View, CA  94043, or:
31
32 # http://www.sgi.com 
33
34 # For further information regarding this notice, see: 
35
36 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
37 #-----------------------------------------------------------------------
38 #
39 # creator
40 owner=nathans@sgi.com
41
42 seq=`basename $0`
43 echo "QA output created by $seq"
44
45 _cleanup()
46 {
47         umount $SCRATCH_MNT 2>/dev/null
48         rm -f $tmp.*
49 }
50
51 here=`pwd`
52 tmp=/tmp/$$
53 status=1        # failure is the default!
54 trap "_cleanup; exit \$status" 0 1 2 3 15
55
56 # get standard environment, filters and checks
57 . ./common.rc
58 . ./common.filter
59
60 # real QA test starts here
61 _require_scratch
62
63 rm -f $seq.full
64 umount $SCRATCH_DEV >/dev/null 2>&1
65
66 _scratch_mkfs_xfs >/dev/null    || _fail "mkfs failed"
67 _scratch_mount >/dev/null       || _fail "mount failed"
68
69 # check there's enough freespace on $SCRATCH_MNT ... (1GiB + 1MiB)
70 avail=`df -P $SCRATCH_MNT | awk 'END {print $4}'`
71 [ "$avail" -ge 1049600 ] || _notrun "Test device is too small ($avail KiB)"
72
73 echo Silence is golden
74
75 # reserve 1GiB, truncate at 100bytes
76 xfs_io -f -c 'resvsp 0 1g' -c 'truncate 100' $SCRATCH_MNT/ouch
77 rm -f $SCRATCH_MNT/ouch
78
79 # reserve 1GiB, truncate at 1GiB
80 xfs_io -f -c 'resvsp 0 1g' -c 'truncate 1g' $SCRATCH_MNT/ouch
81 rm -f $SCRATCH_MNT/ouch
82
83 # reserve 1GiB, truncate at 2GiB
84 xfs_io -f -c 'resvsp 0 1g' -c 'truncate 2g' $SCRATCH_MNT/ouch
85 rm -f $SCRATCH_MNT/ouch
86
87 # reserve 1GiB, 1GiB hole, reserve 1MiB, truncate at 3GiB
88 xfs_io -f -c 'resvsp 0 1g' -c 'resvsp 2g 1m' -c 'truncate 3g' $SCRATCH_MNT/ouch
89 rm -f $SCRATCH_MNT/ouch
90
91 # success, all done
92 status=0
93 exit