blob: 431c7ce07da81e598b0427ba72c5effbeb8c2ff0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2000-2001 Silicon Graphics, Inc. All Rights Reserved.
#
# FS QA Test No. 003
#
# exercise xfs_db bug #784078
#
. ./common/preamble
_begin_fstest db auto quick
# Import common functions.
. ./common/filter
status=0 # success is the default!
# real QA test starts here
_supported_fs xfs
_require_test
[ -f core ] && rm -f core
[ -f core ] && echo "Warning: can't nuke existing core file!"
test_done()
{
sts=$?
[ -f core ] && echo "FAILED - core file"
[ ! -f core -a $sts != 0 ] && echo "FAILED - non-zero exit status"
rm -f core
}
# real QA test starts here
echo "=== TEST 1 ==="
_test_xfs_db -r -c 'pop' -c 'type sb'
test_done
echo "=== TEST 2 ==="
_test_xfs_db -r -c 'push sb'
test_done
echo "=== TEST 3 ==="
_test_xfs_db -r -c 'pop' -c 'push sb'
test_done
echo "=== TEST 4 ==="
_test_xfs_db -r -c 'type sb' -c 'print'
test_done
echo "=== TEST 5 ==="
_test_xfs_db -r -c 'inode 128' -c 'push' -c 'type' >$tmp.out 2>&1
test_done
if ! grep -q "current type is \"inode\"" $tmp.out; then
cat $tmp.out
fi
echo "=== TEST 6 ==="
_test_xfs_db -r -c 'sb' -c 'a' >$tmp.out 2>&1 # don't care about output
test_done
echo "=== TEST 7 ==="
_test_xfs_db -r -c 'ring'
test_done
|