xfstests: fix TEST_MNT typos (should be TEST_DIR)
[xfstests-dev.git] / 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 # creator
25 owner=dxm@sgi.com
26
27 seq=`basename $0`
28 echo "QA output created by $seq"
29
30 here=`pwd`
31 tmp=/tmp/$$
32 status=1
33 trap "_cleanup; rm -f $tmp.*; exit \$status" 0 1 2 3 15
34
35 _cleanup()
36 {
37     echo "*** unmount"
38     umount $SCRATCH_MNT 2>/dev/null
39 }
40
41 # get standard environment, filters and checks
42 . ./common.rc
43 . ./common.filter
44
45 # real QA test starts here
46 _supported_fs xfs
47 _supported_os Linux
48
49 _require_scratch
50
51 checkopts=""
52 [ "$USE_BIG_LOOPFS" = yes ] && checkopts=-t
53
54 echo "*** init FS"
55
56 rm -f $seq.full
57 umount $SCRATCH_DEV >/dev/null 2>&1
58 echo "*** MKFS ***"                         >>$seq.full
59 echo ""                                     >>$seq.full
60 _scratch_mkfs_xfs                           >>$seq.full 2>&1 \
61     || _fail "mkfs failed"
62 _scratch_mount                              >>$seq.full 2>&1 \
63     || _fail "mount failed"
64
65 echo "*** test"
66
67 for l in 0 1 2 3 4
68 do
69         echo "    *** test $l"
70         $FSSTRESS_PROG -d $SCRATCH_MNT -n 1000 $FSSTRESS_AVOID >>$seq.full
71
72         _scratch_mount -o remount,ro \
73             || _fail "remount ro failed"
74
75         echo ""                                 >>$seq.full
76         echo "*** xfs_logprint ***"             >>$seq.full
77         echo ""                                 >>$seq.full
78         _scratch_xfs_logprint -tb               | tee -a $seq.full \
79             | head | grep -q "<CLEAN>" || _fail "DIRTY LOG"
80
81         echo ""                             >>$seq.full
82         echo "*** XFS_CHECK ***"            >>$seq.full
83         echo ""                             >>$seq.full
84         _scratch_xfs_check $checkopts       >>$seq.full 2>&1 \
85             || _fail "xfs_check $checkopts failed"
86         _scratch_mount -o remount,rw \
87             || _fail "remount rw failed"
88 done
89
90 echo "*** done"
91 # happy exit
92 rm -f $seq.full
93 status=0
94 exit 0