89fb22584913a4e46efc2d1c6f4a5af0ff164e3a
[xfstests-dev.git] / 032
1 #! /bin/bash
2 # FS QA Test No. 032
3 #
4 # cross check mkfs detection of foreign filesystems
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2000-2002 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=nathans@sgi.com
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 rm -f $seq.full
35
36 # get standard environment, filters and checks
37 . ./common.rc
38 . ./common.filter
39
40 # real QA test starts here
41 _supported_fs xfs btrfs
42 _supported_os Linux
43
44 _require_nobigloopfs
45 _require_scratch
46
47 # mkfs.btrfs did not have overwrite detection at first
48 if [ "$FSTYP" == "btrfs" ]; then
49         grep -q 'force overwrite' `echo $MKFS_BTRFS_PROG | awk '{print $1}'` || \
50                 _notrun "Installed mkfs.btrfs does not support -f option"
51 fi
52
53 echo "Silence is golden."
54 for fs in `echo ${MKFS_PROG}.* | sed -e 's/.sbin.mkfs.//g'`
55 do
56         preop=""        # for special input needs
57         preargs=""      # for any special pre-device options
58         postargs=""     # for any special post-device options
59
60         # minix, msdos and vfat mkfs fails for large devices, restrict to 2000 blocks
61         [ $fs = minix ] && postargs=2000
62         [ $fs = msdos ] && postargs=2000
63         [ $fs = vfat ] && postargs=2000
64         # these folks prompt before writing
65         [ $fs = jfs ] && preop="echo Y |"
66         [ $fs = gfs ] && preop="echo y |" && preargs="-p lock_nolock -j 1"
67         [ $fs = gfs2 ] && preop="echo y |" && preargs="-p lock_nolock -j 1"
68         [ $fs = reiserfs ] && preop="echo y |" && preargs="-f"
69         # cramfs mkfs requires a directory argument
70         [ $fs = cramfs ] && preargs=/proc/fs
71         [ $fs = ext2 ] && preargs="-F"
72         [ $fs = ext3 ] && preargs="-F"
73         [ $fs = ext4 ] && preargs="-F"
74         [ $fs = ext4dev ] && preargs="-F"
75
76         # overwite the first few Kb - should blow away superblocks
77         src/devzero -n 20 $SCRATCH_DEV >/dev/null
78
79         # create a filesystem of this type
80         echo "=== Creating $fs filesystem..." >>$seq.full
81         echo "    ( $preop mkfs -t $fs $preargs $SCRATCH_DEV $postargs )" >>$seq.full
82         eval $preop mkfs -t $fs $preargs $SCRATCH_DEV $postargs >>$seq.full 2>&1
83
84         if [ $? -eq 0 ] ; then
85                 # next, ensure we don't overwrite it
86                 echo "=== Attempting $FSTYP overwrite of $fs..." >>$seq.full
87                 ${MKFS_PROG}.$FSTYP $SCRATCH_DEV >>$seq.full 2>&1
88
89                 [ $? -eq 0 ] && echo "Failed - overwrote fs type ${fs}!"
90         else
91                 echo "mkfs of type ${fs} failed" >>$seq.full
92         fi
93 done
94
95 # success, all done
96 status=0
97 exit