Update xfsprogs to latest kernel headers and functions
[xfstests-dev.git] / 072
1 #! /bin/sh
2 # FS QA Test No. 072
3 #
4 # Check some unwritten extent boundary conditions
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2000-2003 Silicon Graphics, Inc.  All Rights Reserved.
8 #-----------------------------------------------------------------------
9 #
10 # creator
11 owner=nathans@sgi.com
12
13 seq=`basename $0`
14 echo "QA output created by $seq"
15
16 _cleanup()
17 {
18         cd /
19         rm -f $tmp.*
20         umount $SCRATCH_MNT 2>/dev/null
21 }
22
23 here=`pwd`
24 tmp=/tmp/$$
25 status=1        # failure is the default!
26 trap "_cleanup; exit \$status" 0 1 2 3 15
27
28 # get standard environment, filters and checks
29 . ./common.rc
30 . ./common.filter
31
32 # real QA test starts here
33 _supported_fs xfs
34 _supported_os IRIX Linux
35
36 [ -n "$XFS_IO_PROG" ] || _notrun "xfs_io executable not found"
37
38 _require_scratch
39
40 rm -f $seq.full
41 umount $SCRATCH_DEV >/dev/null 2>&1
42
43 _scratch_mkfs_xfs >/dev/null    || _fail "mkfs failed"
44 _scratch_mount >/dev/null       || _fail "mount failed"
45
46 # check there's enough freespace on $SCRATCH_MNT ... (1GiB + 1MiB)
47 avail=`df -P $SCRATCH_MNT | awk 'END {print $4}'`
48 [ "$avail" -ge 1049600 ] || _notrun "Scratch device is too small ($avail KiB)"
49
50 echo Silence is golden
51
52 # reserve 1GiB, truncate at 100bytes
53 $XFS_IO_PROG -f -c 'resvsp 0 1g' -c 'truncate 100' $SCRATCH_MNT/ouch
54 rm -f $SCRATCH_MNT/ouch
55
56 # reserve 1GiB, truncate at 1GiB
57 $XFS_IO_PROG -f -c 'resvsp 0 1g' -c 'truncate 1g' $SCRATCH_MNT/ouch
58 rm -f $SCRATCH_MNT/ouch
59
60 # reserve 1GiB, truncate at 2GiB
61 $XFS_IO_PROG -f -c 'resvsp 0 1g' -c 'truncate 2g' $SCRATCH_MNT/ouch
62 rm -f $SCRATCH_MNT/ouch
63
64 # reserve 1GiB, 1GiB hole, reserve 1MiB, truncate at 3GiB
65 $XFS_IO_PROG -f -c 'resvsp 0 1g' -c 'resvsp 2g 1m' -c 'truncate 3g' $SCRATCH_MNT/ouch
66 rm -f $SCRATCH_MNT/ouch
67
68 # success, all done
69 status=0
70 exit