xfstests: some refinements on "make depend"
[xfstests-dev.git] / 049
1 #! /bin/bash
2 # FS QA Test No. 049
3 #
4 # XFS on loop test
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=dxm@sgi.com
26
27 seq=`basename $0`
28 echo "QA output created by $seq"
29
30 _cleanup()
31 {
32     cd /
33     umount $SCRATCH_MNT/test2 > /dev/null 2>&1
34     umount $SCRATCH_MNT/test > /dev/null 2>&1
35     rm -f $tmp.*
36
37     if [ -w $seq.full ]
38     then
39         echo "--- mounts at end (after cleanup)" >> $seq.full
40         mount >> $seq.full
41     fi
42 }
43
44 here=`pwd`
45 tmp=/tmp/$$
46 status=1        # failure is the default!
47 trap "_cleanup ; exit \$status" 0 1 2 3 15
48
49 # get standard environment, filters and checks
50 . ./common.rc
51 . ./common.filter
52
53 # real QA test starts here
54 _supported_fs xfs
55 _supported_os Linux
56
57 _log()
58 {
59     echo "--- $*"
60     echo "--- $*" >> $seq.full
61 }
62
63 _require_nobigloopfs
64 _require_nonexternal
65 _require_scratch
66 _require_loop
67
68 rm -f $seq.full
69
70 echo "(dev=$SCRATCH_DEV, mount=$SCRATCH_MNT)" >> $seq.full
71 echo "" >> $seq.full
72
73 echo "--- mounts" >> $seq.full
74 mount >> $seq.full
75
76 _log "Create ext2 fs on scratch"
77 mkfs -t ext2 -F $SCRATCH_DEV >> $seq.full 2>&1 \
78     || _fail "!!! failed to mkfs ext2"
79
80 _log "Mount ext2 fs on scratch"
81 mount -t ext2 $SCRATCH_DEV $SCRATCH_MNT >> $seq.full 2>&1 \
82     || _fail "!!! failed to mount"
83
84 _log "Create xfs fs in file on scratch"
85 /sbin/mkfs.xfs -f -dfile,name=$SCRATCH_MNT/test.xfs,size=40m \
86     >> $seq.full 2>&1 \
87     || _fail "!!! failed to mkfs xfs"
88
89 _log "Make mount points"
90 mkdir $SCRATCH_MNT/test $SCRATCH_MNT/test2 >> $seq.full 2>&1 \
91     || _fail "!!! failed to make mount points"
92
93 _log "Mount xfs via loop"
94 mount -t xfs -o loop $SCRATCH_MNT/test.xfs $SCRATCH_MNT/test >> $seq.full 2>&1 \
95     || _fail "!!! failed to loop mount xfs"
96
97 _log "stress"
98 $FSSTRESS_PROG -d $SCRATCH_MNT/test -n 1000 $FSSTRESS_AVOID >> $seq.full 2>&1 \
99     || _fail "!!! stress failed"
100
101 _log "clean"
102 rm -rf $SCRATCH_MNT/test/* >> $seq.full 2>&1 \
103     || _fail "!!! clean failed"
104
105 _log "create file for ext2 fs"
106 dd if=/dev/zero of=$SCRATCH_MNT/test/test.ext2 bs=1024 count=10240 >> $seq.full 2>&1 \
107     || _fail "!!! create file failed"
108
109 _log "Create ext2 fs in file on looped xfs"
110 echo y | mkfs -t ext2 $SCRATCH_MNT/test/test.ext2 >> $seq.full 2>&1 \
111     || _fail "!!! failed to mkfs ext2 on xfs"
112
113 _log "Mount ext2 on xfs via loop"
114 mount -t ext2 -o loop $SCRATCH_MNT/test/test.ext2 $SCRATCH_MNT/test2 >> $seq.full 2>&1 \
115     || _fail "!!! failed to loop mount xfs"
116
117 _log "stress ext2 on xfs via loop"
118 $FSSTRESS_PROG -d $SCRATCH_MNT/test2 -n 1000 $FSSTRESS_AVOID >> $seq.full 2>&1 \
119     || _fail "!!! stress ext2 failed"
120
121 _log "clean"
122 rm -rf $SCRATCH_MNT/test/* >> $seq.full 2>&1 \
123     || _fail "!!! clean failed"
124
125 _log "umount ext2 on xfs"
126 umount $SCRATCH_MNT/test2 >> $seq.full 2>&1 \
127     || _fail "!!! umount ext2 failed"
128
129 _log "umount xfs"
130 umount $SCRATCH_MNT/test >> $seq.full 2>&1 \
131     || _fail "!!! umount xfs failed"
132
133 echo "--- mounts at end (before cleanup)" >> $seq.full
134 mount >> $seq.full
135
136 rm -f $seq.full
137 # success, all done
138 status=0
139 exit