xfstests: remove stale machine configs
[xfstests-dev.git] / 195
1 #! /bin/bash
2 # FS QA Test No. 195
3 #
4 # Make sure the chattr dump flag gets picked up by xfsdump without a sync
5 #
6 # http://oss.sgi.com/bugzilla/show_bug.cgi?id=340
7 #
8 #-----------------------------------------------------------------------
9 # Copyright (c) 2008 Christoph Hellwig.
10 #
11 # This program is free software; you can redistribute it and/or
12 # modify it under the terms 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,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write the Free Software Foundation,
22 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
23 #-----------------------------------------------------------------------
24 #
25
26 seq=`basename $0`
27 echo "QA output created by $seq"
28
29 here=`pwd`
30 tmp=/tmp/$$
31 status=1        # failure is the default!
32
33 _cleanup()
34 {
35         rm -rf $TEST_DIR/d
36         rm -f $TEST_DIR/dumpfile
37 }
38 trap "_cleanup; exit \$status" 0 1 2 3 15
39
40 #
41 # Perform a level 0 dump that respects the chattr dump exclude flag,
42 # and grep the output for the inode number we expect / do not expect
43 # to be skipped
44 #
45 # Only dump a subtree so we get away with a single partition for
46 # the subtree to be dumped and the dump file.
47 #
48 _do_dump()
49 {
50         xfsdump -l 0 -s d -F  \
51                 -L prova -M prova \
52                 -f $TEST_DIR/dumpfile -e -v excluded_files=debug $TEST_DIR \
53                 | grep "ino $inum" \
54                 | sed -e 's/xfsdump: pruned ino [0-9]*, owner 0, estimated size 0: skip flag set/xfsdump: pruned ino NNN, owner 0, estimated size 0: skip flag set/'
55 }
56
57 # get standard environment, filters and checks
58 . ./common.rc
59 . ./common.filter
60
61 # real QA test starts here
62 _supported_fs xfs
63 _supported_os Linux
64
65 _require_user
66
67 echo "Preparing subtree"
68 mkdir $TEST_DIR/d
69 touch $TEST_DIR/d/t
70 inum=`stat --format "%i" $TEST_DIR/d/t`
71
72 echo "No dump exclude flag set (should not be skipped)"
73 _do_dump
74
75 echo "Dump exclude flag set, but no sync yet (should be skipped)"
76 chattr +d $TEST_DIR/d/t
77 _do_dump
78
79 echo "Dump exclude flag set, after sync (should be skipped)"
80 sync
81 _do_dump
82
83 # success, all done
84 echo "*** done"
85 rm -f $seq.full
86 status=0