fix permissions on non-executable tests
[xfstests-dev.git] / 259
1 #! /bin/bash
2 # FS QA Test No. 259
3 #
4 # Test fs creation on 4 TB minus few bytes partition
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2011 Red Hat.  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=branto@redhat.com
26
27 seq=`basename $0`
28 echo "QA output created by $seq"
29
30 status=1        # failure is the default!
31
32 _cleanup()
33 {
34     rm -f "$testfile"
35 }
36
37 trap "_cleanup ; exit \$status" 0 1 2 3 15
38
39 # get standard environment, filters and checks
40 . ./common.rc
41
42 # real QA test starts here
43 _supported_fs xfs
44 _supported_os Linux
45
46 _require_math
47
48 testfile=$TEST_DIR/259.image
49
50 # Test various sizes slightly less than 4 TB
51 four_TB=$(_math "2^42")
52 for del in 1 512 1024 1025 2048 4096; do
53         ddseek=$(_math "$four_TB - $del")
54         echo "Trying to make (2 TB - $del) B long xfs fs image"
55         rm -f "$testfile"
56         dd if=/dev/zero "of=$testfile" bs=1 count=0 seek=$ddseek \
57                                         >/dev/null 2>&1 || echo "dd failed"
58         lofile=$(losetup -f)
59         losetup $lofile "$testfile"
60         "$MKFS_XFS_PROG" -b size=512 $lofile >/dev/null || echo "mkfs failed!"
61         sync
62         losetup -d $lofile
63 done
64
65 status=0
66
67 exit