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