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