blob: 27ee1dad45d258354aaec0abc7ca9fbfc2387344 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
#! /bin/sh
# FS QA Test No. 064
#
# test multilevel dump and restores with hardlinks
#
#-----------------------------------------------------------------------
# Copyright (c) 2000-2002 Silicon Graphics, Inc. All Rights Reserved.
#-----------------------------------------------------------------------
#
# creator
owner=tes@sgi.com
seq=`basename $0`
echo "QA output created by $seq"
here=`pwd`
tmp=/tmp/$$
status=1 # failure is the default!
trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
# get standard environment, filters and checks
. ./common.rc
. ./common.filter
. ./common.dump
_ls_size_filter()
{
#
# Print size ($5) and fname ($9).
# The size is significant since we add to the file as part
# of a file change for the incremental.
#
# Filter out the housekeeping files of xfsrestore
#
$AWK_PROG 'NF == 9 { print $5, $9 }' |\
egrep -v 'dumpdir|housekeeping|dirattr|dirextattr|namreg|state|tree'
}
# real QA test starts here
_supported_fs xfs
_supported_os IRIX Linux
_create_dumpdir_hardlinks 9
echo "Do the incremental dumps"
i=0
while [ $i -le 9 ]; do
if [ $i -gt 0 ]; then
sleep 2
_modify_level $i
fi
_stable_fs
sleep 2
echo "********* level $i ***********" >>$seq.full
date >>$seq.full
find $SCRATCH_MNT -exec $here/src/lstat64 {} \; | sed 's/(00.*)//' >$tmp.dates.$i
if [ $i -gt 0 ]; then
level_1=`expr $i - 1`
diff -c $tmp.dates.$level_1 $tmp.dates.$i >>$seq.full
else
cat $tmp.dates.$i >>$seq.full
fi
dump_file=$tmp.df.level$i
_do_dump_file -l $i
i=`expr $i + 1`
done
echo "Listing of what files we start with:"
ls -l $dump_dir | _ls_size_filter
echo "Look at what files are contained in the inc. dump"
i=0
while [ $i -le 9 ]; do
echo ""
echo "restoring from df.level$i"
dump_file=$tmp.df.level$i
_do_restore_toc
i=`expr $i + 1`
done
echo "Do the cumulative restores"
i=0
while [ $i -le 9 ]; do
dump_file=$tmp.df.level$i
echo ""
echo "restoring from df.level$i"
_do_restore_file_cum -l $i
echo "ls -l restore_dir"
ls -lR $restore_dir | _ls_size_filter | _check_quota_file
i=`expr $i + 1`
done
# success, all done
status=0
exit
|