xfstests: make install support common/ and tests/ dirs
[xfstests-dev.git] / tests / xfs / 267
1 #! /bin/bash
2 # FS QA Test No. 267
3 #
4 # Test xfsdump with a file spanning multiple media files.
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2011 SGI.  All Rights Reserved.
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as
11 # published by the Free Software Foundation.
12 #
13 # This program is distributed in the hope that it would be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write the Free Software Foundation,
20 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #-----------------------------------------------------------------------
22 #
23
24 seq=`basename $0`
25 seqres=$RESULT_DIR/$seq
26 echo "QA output created by $seq"
27
28 here=`pwd`
29 tmp=/tmp/$$
30 status=0        # success is the default!
31 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
32
33 #
34 # create a 40 MiB file with an extended attr.
35 # xfsdump writes file data in "extent groups", currently 16 MiB in size. After
36 # writing an extent group or finishing a file, xfsdump will start a new media
37 # file if it is over the suggested size. With a single 40 MiB file and using a
38 # suggested media file size of 12 MiB below, this dump will be contained in 3
39 # media files.
40 #
41 _create_files()
42 {
43     cat <<End-of-File >$tmp.config
44 # pathname      size            user    group    perm   name value namespace
45 biggg           41943040        $nobody $nobody  777    attr1 some_text1  root
46 End-of-File
47
48     _wipe_fs
49     _do_create_dumpdir_fill
50     _stable_fs
51 }
52
53 # get standard environment, filters and checks
54 . ./common/rc
55 . ./common/dump
56 . ./common/attr
57
58 # real QA test starts here
59 _supported_fs xfs
60 _supported_os Linux
61
62 _require_tape $TAPE_DEV
63 _require_attrs
64
65 _create_files
66 _erase_hard
67 _do_dump -d 12
68 _do_restore
69 _ls_compare_sub
70 _diff_compare
71 _diff_compare_eas
72
73 # success, all done
74 exit