Merge of xfs-cmds-2.4.18:slinx:111978a by nathans.
[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
70 # From: Steve Lord <lord@sgi.com> 
71 # Date: Thu, 25 Oct 2001 14:21:09 -0500 
72 # This is a combination of merging up to 2.4.13 and cleaning up some
73 # mismatched rcs ids which had crept into the tree. It also makes the
74 # block device cache and the xfs metadata cache coherent - well almost
75 # coherent. The xfs super block and the log are written from special
76 # purpose buffers which are not part of the regular cache. 
77
78 # Since unmount flushes and removes all cached data, the only time the
79 # inconsistency shows up is if you look at the block device while the
80 # fs is mounted. A consequence of this is that regression test number 17
81 # in the test suite will now fail - since it does precisely this.
82
83 # I hope to fix the super block one at least at some point, this will
84 # make xfs_db on a running fs more useful, but the log may never be
85 # fully coherent with the block device interface...
86
87 # Steve
88
89 _notrun "Test (temporarily) retired - refer to comment in test script"
90
91 # real QA test starts here
92
93 _require_scratch
94
95 echo "*** init FS"
96
97 rm -f $seq.full
98 umount $SCRATCH_DEV >/dev/null 2>&1
99 echo "*** MKFS ***"                         >>$seq.full
100 echo ""                                     >>$seq.full
101 mkfs_xfs -f $SCRATCH_DEV                    >>$seq.full 2>&1 \
102     || _fail "mkfs failed"
103 mount -t xfs $SCRATCH_DEV $SCRATCH_MNT      >>$seq.full 2>&1 \
104     || _fail "mount failed"
105
106 echo "*** test"
107
108 for l in 0 1 2 3 4
109 do
110         echo "    *** test $l"
111         src/fsstress -d $SCRATCH_MNT -n 1000 $FSSTRESS_AVOID >>$seq.full
112         
113         mount -o remount,ro $SCRATCH_DEV \
114             || _fail "remount ro failed"
115             
116         _clean_log $SCRATCH_DEV 
117         
118         echo ""                             >>$seq.full
119         echo "*** XFS_CHECK ***"            >>$seq.full
120         echo ""                             >>$seq.full
121         xfs_check $SCRATCH_DEV              >>$seq.full 2>&1 \
122             || _fail "xfs_check failed"
123         mount -o remount,rw $SCRATCH_DEV \
124             || _fail "remount rw failed"
125 done
126
127 echo "*** done"
128 # happy exit
129 rm -f $seq.full
130 status=0
131 exit 0