fix permission checking on full file.
[xfstests-dev.git] / 043
1 #! /bin/sh
2 # XFS QA Test No. 043
3 # $Id: 1.1 $
4 #
5 # Test out xfsdump/restore but rmv inventory prior to restore.
6 # This checks that the on-disk inventory can be successfully
7 # rebuilt from the on-tape inventory.
8 #
9 #-----------------------------------------------------------------------
10 # Copyright (c) 2000 Silicon Graphics, Inc.  All Rights Reserved.
11
12 # This program is free software; you can redistribute it and/or modify it
13 # under the terms of version 2 of the GNU General Public License as
14 # published by the Free Software Foundation.
15
16 # This program is distributed in the hope that it would be useful, but
17 # WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
19
20 # Further, this software is distributed without any warranty that it is
21 # free of the rightful claim of any third person regarding infringement
22 # or the like.  Any license provided herein, whether implied or
23 # otherwise, applies only to this software file.  Patent licenses, if
24 # any, provided herein do not apply to combinations of this program with
25 # other software, or any other product whatsoever.
26
27 # You should have received a copy of the GNU General Public License along
28 # with this program; if not, write the Free Software Foundation, Inc., 59
29 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
30
31 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
32 # Mountain View, CA  94043, or:
33
34 # http://www.sgi.com 
35
36 # For further information regarding this notice, see: 
37
38 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
39 #-----------------------------------------------------------------------
40 #
41 # creator
42 owner=tes@sherman.melbourne.sgi.com
43
44 seq=`basename $0`
45 echo "QA output created by $seq"
46
47 here=`pwd`
48 tmp=/tmp/$$
49 status=1        # failure is the default!
50 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
51
52 # get standard environment, filters and checks
53 . ./common.rc
54 . ./common.dump
55
56 # real QA test starts here
57
58 _require_tape $TAPE_DEV 
59 _create_dumpdir_fill
60 _erase_hard
61 _do_dump_sub
62 rm -rf /var/xfsdump/inventory # delete it - let cleanup fix it
63 _do_restore
64 _diff_compare_sub
65 _ls_compare_sub
66
67 # success, all done
68 status=0
69 exit