common/rc: factor out _scratch_xfs_[get|set]_sb_field
[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 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 two 12 MiB files with extended attrs.
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. A media file size of 8 MiB is used
40 # below, so after dumping a 12 MiB file xfsdump will start a new media file and
41 # no file will be split across a media file.
42 #
43 _create_files()
44 {
45     cat <<End-of-File >$tmp.config
46 # pathname      size            user    group    perm   name value namespace
47 bigg1           12582912        $nobody $nobody  777    attr1 some_text1  root
48 bigg2           12582912        $nobody $nobody  777    attr2 some_text2  user
49 End-of-File
50
51     _wipe_fs
52     _do_create_dumpdir_fill
53     _stable_fs
54 }
55
56 # get standard environment, filters and checks
57 . ./common/rc
58 . ./common/dump
59 . ./common/attr
60
61 # real QA test starts here
62 _supported_fs xfs
63 _supported_os Linux
64
65 _require_tape $TAPE_DEV
66 _require_attrs
67
68 _create_files
69 _erase_hard
70 _do_dump -d 8
71 _do_restore
72 _ls_compare_sub
73 _diff_compare
74 _diff_compare_eas
75
76 # success, all done
77 exit