Fix QA tests which use dd so that they specify posixly correct output
[xfstests-dev.git] / 049
1 #! /bin/sh
2 # XFS QA Test No. 049
3 # $Id: 1.1 $
4 #
5 # XFS on loop test
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2000-2002 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 rightfullclaim 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=dxm@sgi.com
41
42 seq=`basename $0`
43 echo "QA output created by $seq"
44
45 _cleanup()
46 {
47     umount $SCRATCH_MNT/test2 > /dev/null 2>&1
48     umount $SCRATCH_MNT/test > /dev/null 2>&1
49     rm -f $tmp.*
50     
51     if [ -w $seq.full ]
52     then
53         echo "--- mounts at end (after cleanup)" >> $seq.full
54         mount >> $seq.full
55     fi
56 }
57
58 here=`pwd`
59 tmp=/tmp/$$
60 status=1        # failure is the default!
61 trap "_cleanup ; exit \$status" 0 1 2 3 15
62
63 # get standard environment, filters and checks
64 . ./common.rc
65 . ./common.filter
66
67 _log()
68 {
69     echo "--- $*"
70     echo "--- $*" >> $seq.full
71 }
72
73 # real QA test starts here
74
75 _require_scratch
76 _require_loop
77
78 [ "$USE_EXTERNAL" = yes ] && _notrun "Test doesn't cope with external devices"
79
80 rm -f $seq.full
81
82 echo "(dev=$SCRATCH_DEV, mount=$SCRATCH_MNT)" >> $seq.full
83 echo "" >> $seq.full
84
85 echo "--- mounts" >> $seq.full
86 mount >> $seq.full
87
88 _log "Create ext2 fs on scratch"
89 mkfs -t ext2 $SCRATCH_DEV >> $seq.full 2>&1 \
90     || _fail "!!! failed to mkfs ext2"
91
92 _log "Mount ext2 fs on scratch"
93 mount -t ext2 $SCRATCH_DEV $SCRATCH_MNT >> $seq.full 2>&1 \
94     || _fail "!!! failed to mount"
95
96 _log "Create xfs fs in file on scratch"
97 /sbin/mkfs.xfs -f $MKFS_OPTIONS -dfile,name=$SCRATCH_MNT/test.xfs,size=20m \
98     >> $seq.full 2>&1 \
99     || _fail "!!! failed to mkfs xfs"
100
101 _log "Make mount points"
102 mkdir $SCRATCH_MNT/test $SCRATCH_MNT/test2 >> $seq.full 2>&1 \
103     || _fail "!!! failed to make mount points"
104
105 _log "Mount xfs via loop"
106 mount -t xfs -o loop $SCRATCH_MNT/test.xfs $SCRATCH_MNT/test >> $seq.full 2>&1 \
107     || _fail "!!! failed to loop mount xfs"
108
109 _log "stress"
110 src/fsstress -d $SCRATCH_MNT/test -n 1000 $FSSTRESS_AVOID >> $seq.full 2>&1 \
111     || _fail "!!! stress failed"
112     
113 _log "clean"
114 rm -rf $SCRATCH_MNT/test/* >> $seq.full 2>&1 \
115     || _fail "!!! clean failed"
116
117 _log "create file for ext2 fs"
118 dd if=/dev/zero of=$SCRATCH_MNT/test/test.ext2 bs=1024 count=10240 >> $seq.full 2>&1 \
119     || _fail "!!! create file failed"
120     
121 _log "Create ext2 fs in file on looped xfs"
122 echo y | mkfs -t ext2 $SCRATCH_MNT/test/test.ext2 >> $seq.full 2>&1 \
123     || _fail "!!! failed to mkfs ext2 on xfs"
124
125 _log "Mount ext2 on xfs via loop"
126 mount -t ext2 -o loop $SCRATCH_MNT/test/test.ext2 $SCRATCH_MNT/test2 >> $seq.full 2>&1 \
127     || _fail "!!! failed to loop mount xfs"
128
129 _log "stress ext2 on xfs via loop"
130 src/fsstress -d $SCRATCH_MNT/test2 -n 1000 $FSSTRESS_AVOID >> $seq.full 2>&1 \
131     || _fail "!!! stress ext2 failed"   
132
133 _log "clean"
134 rm -rf $SCRATCH_MNT/test/* >> $seq.full 2>&1 \
135     || _fail "!!! clean failed"
136    
137 _log "umount ext2 on xfs"
138 umount $SCRATCH_MNT/test2 >> $seq.full 2>&1 \
139     || _fail "!!! umount ext2 failed"
140     
141 _log "umount xfs"
142 umount $SCRATCH_MNT/test >> $seq.full 2>&1 \
143     || _fail "!!! umount xfs failed"
144     
145 echo "--- mounts at end (before cleanup)" >> $seq.full
146 mount >> $seq.full
147
148 rm -f $seq.full
149 # success, all done
150 status=0
151 exit