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