Update to use newer versions of libacl functions.
[xfstests-dev.git] / 064
1 #! /bin/sh
2 # XFS QA Test No. 064
3 # $Id: 1.1 $
4 #
5 # test multilevel dump and restores with hardlinks
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2000 Silicon Graphics, Inc.  All Rights Reserved.
9
10 # This program is free software; you can redistribute it and/or modify it
11 # under the terms of version 2 of the GNU General Public License as
12 # published by the Free Software Foundation.
13
14 # This program is distributed in the hope that it would be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17
18 # Further, this software is distributed without any warranty that it is
19 # free of the rightful claim of any third person regarding infringement
20 # or the like.  Any license provided herein, whether implied or
21 # otherwise, applies only to this software file.  Patent licenses, if
22 # any, provided herein do not apply to combinations of this program with
23 # other software, or any other product whatsoever.
24
25 # You should have received a copy of the GNU General Public License along
26 # with this program; if not, write the Free Software Foundation, Inc., 59
27 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
28
29 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
30 # Mountain View, CA  94043, or:
31
32 # http://www.sgi.com 
33
34 # For further information regarding this notice, see: 
35
36 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
37 #-----------------------------------------------------------------------
38 #
39 # creator
40 owner=tes@sagan.melbourne.sgi.com
41
42 seq=`basename $0`
43 echo "QA output created by $seq"
44
45 here=`pwd`
46 tmp=/tmp/$$
47 status=1        # failure is the default!
48 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
49
50 # get standard environment, filters and checks
51 . ./common.rc
52 . ./common.filter
53 . ./common.dump
54
55
56 _ls_size_filter()
57 {
58     #
59     # Print size ($5) and fname ($9).
60     # The size is significant since we add to the file as part
61     # of a file change for the incremental.
62     #
63     # Filter out the housekeeping files of xfsrestore
64     #
65     $AWK_PROG 'NF == 9 { print $5, $9 }' |\
66     egrep -v 'dumpdir|housekeeping|dirattr|dirextattr|namreg|state|tree' 
67 }
68
69 # real QA test starts here
70
71 _create_dumpdir_hardlinks 9
72
73 echo "Do the incremental dumps"
74 i=0
75 while [ $i -le 9 ]; do
76     if [ $i -gt 0 ]; then
77         _modify_level $i
78         sleep 2
79         _stable_fs
80     fi 
81     dump_file=$tmp.df.level$i
82     _do_dump_file -l $i
83     i=`expr $i + 1`     
84 done
85
86 echo "Listing of what files we start with:"
87 ls -l $dump_dir | _ls_size_filter
88
89 echo "Look at what files are contained in the inc. dump"
90 i=0
91 while [ $i -le 9 ]; do
92     echo ""
93     echo "restoring from df.level$i"
94     dump_file=$tmp.df.level$i
95     _do_restore_toc
96     i=`expr $i + 1`     
97 done
98
99 echo "Do the cumulative restores"
100 i=0
101 while [ $i -le 9 ]; do
102     dump_file=$tmp.df.level$i
103     echo ""
104     echo "restoring from df.level$i"
105     _do_restore_file_cum -l $i
106     echo "ls -l restore_dir"
107     ls -lR $restore_dir | _ls_size_filter | _check_quota_file
108     i=`expr $i + 1`     
109 done
110
111 # success, all done
112 status=0
113 exit