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