update config for couple of hosts.
[xfstests-dev.git] / 032
1 #! /bin/sh
2 # XFS QA Test No. 032
3 # $Id: 1.1 $
4 #
5 # cross check mkfs detection of foreign filesystems
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2000 Silicon Graphics, Inc.  All Rights Reserved.
9
10 # This program is free software; you can redistribute it and/or modify it
11 # under the terms of version 2 of the GNU General Public License as
12 # published by the Free Software Foundation.
13
14 # This program is distributed in the hope that it would be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17
18 # Further, this software is distributed without any warranty that it is
19 # free of the rightful claim of any third person regarding infringement
20 # or the like.  Any license provided herein, whether implied or
21 # otherwise, applies only to this software file.  Patent licenses, if
22 # any, provided herein do not apply to combinations of this program with
23 # other software, or any other product whatsoever.
24
25 # You should have received a copy of the GNU General Public License along
26 # with this program; if not, write the Free Software Foundation, Inc., 59
27 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
28
29 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
30 # Mountain View, CA  94043, or:
31
32 # http://www.sgi.com 
33
34 # For further information regarding this notice, see: 
35
36 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
37 #-----------------------------------------------------------------------
38 #
39 # creator
40 owner=nathans@sgi.com
41
42 seq=`basename $0`
43 echo "QA output created by $seq"
44
45 here=`pwd`
46 tmp=/tmp/$$
47 status=1        # failure is the default!
48 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
49 rm -f $seq.full
50
51 # get standard environment, filters and checks
52 . ./common.rc
53 . ./common.filter
54
55 # real QA test starts here
56
57 _require_scratch
58
59 echo "Silence is golden."
60 for fs in `echo /sbin/mkfs.* | sed -e 's/.sbin.mkfs.//g'`
61 do
62         preop=""        # for special input needs
63         preargs=""      # for any special pre-device options
64         postargs=""     # for any special post-device options
65
66         # minix mkfs fails for large devices, restrict to 2000 blocks
67         [ $fs = "minix" ] && postargs=2000
68         # these folk prompt before writing
69         [ $fs = "jfs" ] && preop="echo Y |"
70         [ $fs = "reiserfs" ] && preop="echo y |"
71
72         # overwite the first few Kb - should blow away superblocks
73         src/devzero -n 20 $SCRATCH_DEV >/dev/null
74
75         # create a filesystem of this type
76         echo "=== Creating $fs filesystem..." >>$seq.full
77         echo "    ( mkfs -t $fs $SCRATCH_DEV )" >>$seq.full
78         eval $preop mkfs -t $fs $preargs $SCRATCH_DEV $postargs >>$seq.full 2>&1
79
80         # next, ensure we don't overwrite it
81         echo "=== Attempting XFS overwrite of $fs..." >>$seq.full
82         /sbin/mkfs.xfs $SCRATCH_DEV >>$seq.full 2>&1
83
84         [ $? -eq 0 ] && echo "Failed - overwrote fs type ${fs}!"
85 done
86
87 # success, all done
88 status=0
89 exit