Fix up some autoconf macros to get freebsd builds working again.
[xfstests-dev.git] / 085
1 #! /bin/sh
2 # FS 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 . ./common.log
56
57 # real QA test starts here
58 _supported_fs xfs
59 _supported_os IRIX Linux
60
61 rm -f $seq.full
62 rm -f $tmp.log
63
64 _require_scratch
65
66 echo "mkfs"
67 _scratch_mkfs_xfs >>$seq.full 2>&1 \
68     || _fail "mkfs scratch failed"
69
70 echo "mount"
71 _scratch_mount >>$seq.full 2>&1 \
72     || _fail "mount failed: $MOUNT_OPTIONS"
73
74 echo "touch files"
75 touch $SCRATCH_MNT/{0,1,2,3,4,5,6,7,8,9}{0,1,2,3,4,5,6,7,8,9}
76
77 echo "godown"
78 src/godown -v -f $SCRATCH_MNT >> $seq.full
79
80 echo "unmount"
81 umount $SCRATCH_MNT
82
83 echo "logprint after going down..."
84 _print_logstate
85
86 # curious if FS consistent at start
87 if false; then
88     if /usr/sbin/xfs_check $SCRATCH_DEV; then
89        echo "*** checked ok ***"
90     fi
91 fi
92
93 echo "mount with replay"
94 _scratch_mount $mnt >>$seq.full 2>&1 \
95     || _fail "mount failed: $mnt $MOUNT_OPTIONS"
96
97 echo "ls SCRATCH_MNT"
98 ls $SCRATCH_MNT
99
100 echo "unmount"
101 umount $SCRATCH_MNT
102
103 echo "logprint after mount and replay..."
104 _print_logstate
105
106 if _check_scratch_fs; then
107     echo "filesystem is checked ok"
108 else
109     echo "filesystem is NOT ok"
110 fi
111
112 # success, all done
113 status=0
114 exit