fd2afbedce2cf3328bc85186945c3aae0bba1dc9
[xfstests-dev.git] / tests / xfs / 017
1 #! /bin/bash
2 # FS QA Test No. 017
3 #
4 # test remount ro - pv 795642
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
25 seq=`basename $0`
26 seqres=$RESULT_DIR/$seq
27 seqres=$RESULT_DIR/$seq
28 seqres=$RESULT_DIR/$seq
29 echo "QA output created by $seq"
30
31 here=`pwd`
32 tmp=/tmp/$$
33 status=1
34 trap "_cleanup; rm -f $tmp.*; exit \$status" 0 1 2 3 15
35
36 _cleanup()
37 {
38     echo "*** unmount"
39     umount $SCRATCH_MNT 2>/dev/null
40 }
41
42 # get standard environment, filters and checks
43 . ./common/rc
44 . ./common/filter
45
46 # real QA test starts here
47 _supported_fs xfs
48 _supported_os Linux
49
50 _require_scratch
51
52 # xfs_db will OOM kill the machine if you don't have huge amounts of RAM, so
53 # don't run this on large filesystems.
54 _require_no_large_scratch_dev
55
56 echo "*** init FS"
57
58 rm -f $seqres.full
59 umount $SCRATCH_DEV >/dev/null 2>&1
60 echo "*** MKFS ***"                         >>$seqres.full
61 echo ""                                     >>$seqres.full
62 _scratch_mkfs_xfs                           >>$seqres.full 2>&1 \
63     || _fail "mkfs failed"
64 _scratch_mount                              >>$seqres.full 2>&1 \
65     || _fail "mount failed"
66
67 echo "*** test"
68
69 for l in 0 1 2 3 4
70 do
71         echo "    *** test $l"
72         FSSTRESS_ARGS=`_scale_fsstress_args -d $SCRATCH_MNT -n 1000 $FSSTRESS_AVOID`
73         $FSSTRESS_PROG  $FSSTRESS_ARGS >>$seqres.full
74
75         _scratch_mount -o remount,ro \
76             || _fail "remount ro failed"
77
78         echo ""                                 >>$seqres.full
79         echo "*** xfs_logprint ***"             >>$seqres.full
80         echo ""                                 >>$seqres.full
81         _scratch_xfs_logprint -tb               | tee -a $seqres.full \
82             | head | grep -q "<CLEAN>" || _fail "DIRTY LOG"
83
84         echo ""                             >>$seqres.full
85         echo "*** XFS_CHECK ***"            >>$seqres.full
86         echo ""                             >>$seqres.full
87         _scratch_xfs_check                  >>$seqres.full 2>&1 \
88             || _fail "xfs_check failed"
89         _scratch_mount -o remount,rw \
90             || _fail "remount rw failed"
91 done
92
93 echo "*** done"
94 # happy exit
95 rm -f $seqres.full
96 status=0
97 exit 0