xfstests: remove stale machine configs
[xfstests-dev.git] / 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 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 two 12 MiB files with extended attrs.
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. A media file size of 8 MiB is used
39 # below, so after dumping a 12 MiB file xfsdump will start a new media file and
40 # no file will be split across a media file.
41 #
42 _create_files()
43 {
44     cat <<End-of-File >$tmp.config
45 # pathname      size            user    group    perm   name value namespace
46 bigg1           12582912        $nobody $nobody  777    attr1 some_text1  root
47 bigg2           12582912        $nobody $nobody  777    attr2 some_text2  user
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 8
70 _do_restore
71 _ls_compare_sub
72 _diff_compare
73 _diff_compare_eas
74
75 # success, all done
76 exit