xfstests: add local.config example
[xfstests-dev.git] / 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 # creator
24 owner=wkendall@sgi.com
25
26 seq=`basename $0`
27 echo "QA output created by $seq"
28
29 here=`pwd`
30 tmp=/tmp/$$
31 status=0        # success is the default!
32 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
33
34 #
35 # create a 40 MiB file with an extended attr.
36 # xfsdump writes file data in "extent groups", currently 16 MiB in size. After
37 # writing an extent group or finishing a file, xfsdump will start a new media
38 # file if it is over the suggested size. With a single 40 MiB file and using a
39 # suggested media file size of 12 MiB below, this dump will be contained in 3
40 # media files.
41 #
42 _create_files()
43 {
44     cat <<End-of-File >$tmp.config
45 # pathname      size            user    group    perm   name value namespace
46 biggg           41943040        $nobody $nobody  777    attr1 some_text1  root
47 End-of-File
48
49     _wipe_fs
50     _do_create_dumpdir_fill
51     _stable_fs
52 }
53
54 # get standard environment, filters and checks
55 . ./common.rc
56 . ./common.dump
57 . ./common.attr
58
59 # real QA test starts here
60 _supported_fs xfs
61 _supported_os Linux
62
63 _require_tape $TAPE_DEV
64 _require_attrs
65
66 _create_files
67 _erase_hard
68 _do_dump -d 12
69 _do_restore
70 _ls_compare_sub
71 _diff_compare
72 _diff_compare_eas
73
74 # success, all done
75 exit