check correct filesystem
[xfstests-dev.git] / 017
1 #! /bin/sh
2 # XFS QA Test No. 017
3 # $Id: 1.1 $
4 #
5 # test remount ro - pv 795642 
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=dxm@sgi.com
41
42 seq=`basename $0`
43 echo "QA output created by $seq"
44
45 here=`pwd`
46 tmp=/tmp/$$
47 status=1
48
49 _cleanup()
50 {
51     echo "*** unmount"
52     umount $SCRATCH_MNT 2>/dev/null
53 }
54 trap "_cleanup; rm -f $tmp.*; exit \$status" 0 1 2 3 15
55
56 _clean_log()
57 {
58     echo ""                                 >>$seq.full
59     echo "*** xfs_logprint ***"             >>$seq.full
60     echo ""                                 >>$seq.full
61     xfs_logprint -tb $1                     | tee -a $seq.full \
62         | head | grep -q "<CLEAN>" || _fail "DIRTY LOG"
63 }
64
65 # get standard environment, filters and checks
66 . ./common.rc
67 . ./common.filter
68
69 # real QA test starts here
70
71 _require_scratch
72
73 echo "*** init FS"
74
75 rm -f $seq.full
76 umount $SCRATCH_DEV >/dev/null 2>&1
77 echo "*** MKFS ***"                         >>$seq.full
78 echo ""                                     >>$seq.full
79 mkfs -t xfs -f $SCRATCH_DEV                 >>$seq.full 2>&1 \
80     || _fail "mkfs failed"
81 mount -t xfs $SCRATCH_DEV $SCRATCH_MNT      >>$seq.full 2>&1 \
82     || _fail "mount failed"
83
84 echo "*** test"
85
86 for l in 0 1 2 3 4
87 do
88         echo "    *** test $l"
89         src/fsstress -d $SCRATCH_MNT -n 1000 $FSSTRESS_AVOID >>$seq.full
90         
91         mount -o remount,ro $SCRATCH_DEV \
92             || _fail "remount ro failed"
93             
94         _clean_log $SCRATCH_DEV 
95         
96         echo ""                             >>$seq.full
97         echo "*** XFS_CHECK ***"            >>$seq.full
98         echo ""                             >>$seq.full
99         xfs_check $SCRATCH_DEV              >>$seq.full 2>&1 \
100             || _fail "xfs_check failed"
101         mount -o remount,rw $SCRATCH_DEV \
102             || _fail "remount rw failed"
103 done
104
105 echo "*** done"
106 # happy exit
107 rm -f $seq.full
108 status=0
109 exit 0