b96d7025dac3ef08999359c543e5d698aa591475
[xfstests-dev.git] / 271
1 #! /bin/bash
2 # FSQA Test No. 271
3 #
4 # Regression testcase for d583fb87a3ff0 (ext4 extent corruption)
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2006 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 # creator
25 owner=dmonakhov@openvz.org
26
27 seq=`basename $0`
28 echo "QA output created by $seq"
29
30 here=`pwd`
31 tmp=/tmp/$$
32 status=1        # failure is the default!
33 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
34
35 # get standard environment, filters and checks
36 . ./common.rc
37 . ./common.filter
38
39 # real QA test starts here
40 _supported_fs ext4
41 _supported_os Linux
42 _need_to_be_root
43 _require_scratch
44
45 _scratch_mkfs_sized $((128 * 1024 * 1024)) >> $seq.full 2>&1
46
47 # -onoload and EXT4_SYNC_FL on file is important becase result in
48 # metadata sync writes inside ext4_handle_dirty_metadata()
49 _scratch_mount -onoload
50 touch $SCRATCH_MNT/file
51 chattr +S $SCRATCH_MNT/file
52 # Create sparse file 
53 for ((i = 0; i < 21; i++))
54 do
55     dd if=/dev/zero of=$SCRATCH_MNT/file bs=4k count=1 seek=$((i*10))
56 done
57 # truncate last extent
58 $XFS_IO_PROG -F -f -c "truncate $((4096*200))" $SCRATCH_MNT/file
59
60 if ! _scratch_unmount; then
61         echo "failed to umount"
62         status=1
63         exit
64 fi
65 echo "Check filesystem"
66 _check_scratch_fs
67 status=$?
68 exit