Fix QA tests which use dd so that they specify posixly correct output
[xfstests-dev.git] / 003
1 #! /bin/sh
2 #
3 # XFS QA Test No. 003
4 # $Id: 1.1 $
5 #
6 # exercise xfs_db bug #784078
7 #
8 #-----------------------------------------------------------------------
9 # Copyright (c) 2000-2001 Silicon Graphics, Inc.  All Rights Reserved.
10
11 # This program is free software; you can redistribute it and/or modify it
12 # under the terms of version 2 of the GNU General Public License as
13 # published by the Free Software Foundation.
14
15 # This program is distributed in the hope that it would be useful, but
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18
19 # Further, this software is distributed without any warranty that it is
20 # free of the rightful claim of any third person regarding infringement
21 # or the like.  Any license provided herein, whether implied or
22 # otherwise, applies only to this software file.  Patent licenses, if
23 # any, provided herein do not apply to combinations of this program with
24 # other software, or any other product whatsoever.
25
26 # You should have received a copy of the GNU General Public License along
27 # with this program; if not, write the Free Software Foundation, Inc., 59
28 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
29
30 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
31 # Mountain View, CA  94043, or:
32
33 # http://www.sgi.com 
34
35 # For further information regarding this notice, see: 
36
37 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
38 #-----------------------------------------------------------------------
39 #
40 # creator
41 owner=nathans@melbourne.sgi.com
42
43 seq=`basename $0`
44 echo "QA output created by $seq"
45
46 # get standard environment, filters and checks
47 . ./common.rc
48 . ./common.filter
49
50 tmp=/tmp/$$
51 here=`pwd`
52 status=0        # success is the default!
53 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
54
55 _need_to_be_root
56
57 # real QA test starts here
58
59 PATH=".:$PATH"
60
61 [ -f core ] && rm -f core
62 [ -f core ] && echo "Warning: can't nuke existing core file!"
63
64 test_done()
65 {
66         sts=$?
67         [ -f core ] && echo "FAILED - core file"
68         [ ! -f core -a $sts != 0 ] && echo "FAILED - non-zero exit status"
69         rm -f core
70 }
71
72 # real QA test starts here
73
74 echo "=== TEST 1 ==="
75 xfs_db -r -c 'pop' -c 'type sb' $TEST_DEV
76 test_done
77
78 echo "=== TEST 2 ==="
79 xfs_db -r -c 'push sb' $TEST_DEV
80 test_done
81
82 echo "=== TEST 3 ==="
83 xfs_db -r -c 'pop' -c 'push sb' $TEST_DEV
84 test_done
85
86 echo "=== TEST 4 ==="
87 xfs_db -r -c 'type sb' -c 'print' $TEST_DEV
88 test_done
89
90 echo "=== TEST 5 ==="
91 xfs_db -r -c 'inode 128' -c 'push' -c 'type' $TEST_DEV >$tmp.out 2>&1
92 test_done
93 if ! grep -q "current type is \"inode\"" $tmp.out
94 then
95         cat $tmp.out
96 fi
97
98 echo "=== TEST 6 ==="
99 xfs_db -r -c 'sb' -c 'a' $TEST_DEV >$tmp.out 2>&1 # don't care about output
100 test_done
101
102 echo "=== TEST 7 ==="
103 xfs_db -r -c 'ring' $TEST_DEV
104 test_done