Dont attempt db freespace command on big sparse loopback filesystems, takes ages
[xfstests-dev.git] / 003
1 #! /bin/sh
2 #
3 # XFS QA Test No. 003
4 #
5 # exercise xfs_db bug #784078
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2000-2001 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=nathans@sgi.com
41
42 seq=`basename $0`
43 echo "QA output created by $seq"
44
45 # get standard environment, filters and checks
46 . ./common.rc
47 . ./common.filter
48
49 tmp=/tmp/$$
50 here=`pwd`
51 status=0        # success is the default!
52 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
53
54 _need_to_be_root
55
56 # real QA test starts here
57
58 PATH=".:$PATH"
59
60 [ -f core ] && rm -f core
61 [ -f core ] && echo "Warning: can't nuke existing core file!"
62
63 test_done()
64 {
65         sts=$?
66         [ -f core ] && echo "FAILED - core file"
67         [ ! -f core -a $sts != 0 ] && echo "FAILED - non-zero exit status"
68         rm -f core
69 }
70
71 # real QA test starts here
72
73 echo "=== TEST 1 ==="
74 xfs_db -r -c 'pop' -c 'type sb' $TEST_DEV
75 test_done
76
77 echo "=== TEST 2 ==="
78 xfs_db -r -c 'push sb' $TEST_DEV
79 test_done
80
81 echo "=== TEST 3 ==="
82 xfs_db -r -c 'pop' -c 'push sb' $TEST_DEV
83 test_done
84
85 echo "=== TEST 4 ==="
86 xfs_db -r -c 'type sb' -c 'print' $TEST_DEV
87 test_done
88
89 echo "=== TEST 5 ==="
90 xfs_db -r -c 'inode 128' -c 'push' -c 'type' $TEST_DEV >$tmp.out 2>&1
91 test_done
92 if ! grep -q "current type is \"inode\"" $tmp.out
93 then
94         cat $tmp.out
95 fi
96
97 echo "=== TEST 6 ==="
98 xfs_db -r -c 'sb' -c 'a' $TEST_DEV >$tmp.out 2>&1 # don't care about output
99 test_done
100
101 echo "=== TEST 7 ==="
102 xfs_db -r -c 'ring' $TEST_DEV
103 test_done