Fixed merge problems
[xfstests-dev.git] / 085
1 #! /bin/sh
2 # XFS QA Test No. 085
3 #
4 # To test log replay by shutdown of file system
5 # This is the first simple initial test to ensure that
6 # the goingdown ioctl is working and recovery of
7 # create transactions is working.
8 #
9 #-----------------------------------------------------------------------
10 # Copyright (c) 2000-2003 Silicon Graphics, Inc.  All Rights Reserved.
11
12 # This program is free software; you can redistribute it and/or modify it
13 # under the terms of version 2 of the GNU General Public License as
14 # published by the Free Software Foundation.
15
16 # This program is distributed in the hope that it would be useful, but
17 # WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
19
20 # Further, this software is distributed without any warranty that it is
21 # free of the rightful claim of any third person regarding infringement
22 # or the like.  Any license provided herein, whether implied or
23 # otherwise, applies only to this software file.  Patent licenses, if
24 # any, provided herein do not apply to combinations of this program with
25 # other software, or any other product whatsoever.
26
27 # You should have received a copy of the GNU General Public License along
28 # with this program; if not, write the Free Software Foundation, Inc., 59
29 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
30
31 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
32 # Mountain View, CA  94043, or:
33
34 # http://www.sgi.com 
35
36 # For further information regarding this notice, see: 
37
38 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
39 #-----------------------------------------------------------------------
40 #
41 # creator
42 owner=tes@melbourne.sgi.com
43
44 seq=`basename $0`
45 echo "QA output created by $seq"
46
47 here=`pwd`
48 tmp=/tmp/$$
49 status=1        # failure is the default!
50 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
51
52 # get standard environment, filters and checks
53 . ./common.rc
54 . ./common.filter
55
56 # real QA test starts here
57
58 _do_logprint()
59 {
60     xfs_logprint -t $SCRATCH_DEV | tee -a $seq.full >$tmp.logprint
61     if grep -q "<DIRTY>" $tmp.logprint; then
62         echo "dirty log"
63     fi
64     if grep -q "<CLEAN>" $tmp.logprint; then
65         echo "clean log"
66     fi
67 }
68
69 rm -f $seq.full
70 rm -f $tmp.log
71
72 _require_scratch
73
74 echo "mkfs"
75 _scratch_mkfs_xfs >>$seq.full 2>&1 \
76     || _fail "mkfs scratch failed"
77
78 echo "mount"
79 _scratch_mount >>$seq.full 2>&1 \
80     || _fail "mount failed: $MOUNT_OPTIONS"
81
82 echo "touch files"
83 touch $SCRATCH_MNT/{0,1,2,3,4,5,6,7,8,9}{0,1,2,3,4,5,6,7,8,9}
84
85 echo "godown"
86 src/godown -v -f $SCRATCH_MNT >> $seq.full
87
88 echo "unmount"
89 umount $SCRATCH_MNT
90
91 echo "logprint after going down..."
92 _do_logprint
93
94 # curious if FS consistent at start
95 if false; then
96     if /usr/sbin/xfs_check $SCRATCH_DEV; then
97        echo "*** checked ok ***"
98     fi
99 fi
100
101 echo "mount with replay"
102 _scratch_mount $mnt >>$seq.full 2>&1 \
103     || _fail "mount failed: $mnt $MOUNT_OPTIONS"
104
105 echo "ls SCRATCH_MNT"
106 ls $SCRATCH_MNT
107
108 echo "unmount"
109 umount $SCRATCH_MNT
110
111 echo "logprint after mount and replay..."
112 _do_logprint
113
114 if _check_scratch_fs; then
115     echo "filesystem is checked ok"
116 else
117     echo "filesystem is NOT ok"
118 fi
119
120 # success, all done
121 status=0
122 exit