xfstests: introduce a common directory
[xfstests-dev.git] / tests / xfs / 268
1 #! /bin/bash
2 # FS QA Test No. 268
3 #
4 # Test xfsdump with multiple media files where a file ends
5 # at the end of the first media file (i.e., no file is split
6 # across media files).
7 #
8 #-----------------------------------------------------------------------
9 # Copyright (c) 2011 SGI.  All Rights Reserved.
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 seqres=$RESULT_DIR/$seq
28 seqres=$RESULT_DIR/$seq
29 seqres=$RESULT_DIR/$seq
30 echo "QA output created by $seq"
31
32 here=`pwd`
33 tmp=/tmp/$$
34 status=0        # success is the default!
35 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
36
37 #
38 # create two 12 MiB files with extended attrs.
39 # xfsdump writes file data in "extent groups", currently 16 MiB in size. After
40 # writing an extent group or finishing a file, xfsdump will start a new media
41 # file if it is over the suggested size. A media file size of 8 MiB is used
42 # below, so after dumping a 12 MiB file xfsdump will start a new media file and
43 # no file will be split across a media file.
44 #
45 _create_files()
46 {
47     cat <<End-of-File >$tmp.config
48 # pathname      size            user    group    perm   name value namespace
49 bigg1           12582912        $nobody $nobody  777    attr1 some_text1  root
50 bigg2           12582912        $nobody $nobody  777    attr2 some_text2  user
51 End-of-File
52
53     _wipe_fs
54     _do_create_dumpdir_fill
55     _stable_fs
56 }
57
58 # get standard environment, filters and checks
59 . ./common/rc
60 . ./common/dump
61 . ./common/attr
62
63 # real QA test starts here
64 _supported_fs xfs
65 _supported_os Linux
66
67 _require_tape $TAPE_DEV
68 _require_attrs
69
70 _create_files
71 _erase_hard
72 _do_dump -d 8
73 _do_restore
74 _ls_compare_sub
75 _diff_compare
76 _diff_compare_eas
77
78 # success, all done
79 exit