2001-11-30 03:24:22 +00:00
|
|
|
#! /bin/sh
|
2004-06-15 07:32:36 +00:00
|
|
|
# FS QA Test No. 064
|
2001-11-30 03:24:22 +00:00
|
|
|
#
|
|
|
|
|
# test multilevel dump and restores with hardlinks
|
|
|
|
|
#
|
|
|
|
|
#-----------------------------------------------------------------------
|
2002-06-04 23:07:56 +00:00
|
|
|
# Copyright (c) 2000-2002 Silicon Graphics, Inc. All Rights Reserved.
|
2001-11-30 03:24:22 +00:00
|
|
|
#-----------------------------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# creator
|
2003-06-24 06:21:22 +00:00
|
|
|
owner=tes@sgi.com
|
2001-11-30 03:24:22 +00:00
|
|
|
|
|
|
|
|
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
|
2004-06-15 07:32:36 +00:00
|
|
|
_supported_fs xfs
|
|
|
|
|
_supported_os IRIX Linux
|
2001-11-30 03:24:22 +00:00
|
|
|
|
|
|
|
|
_create_dumpdir_hardlinks 9
|
|
|
|
|
|
|
|
|
|
echo "Do the incremental dumps"
|
|
|
|
|
i=0
|
|
|
|
|
while [ $i -le 9 ]; do
|
|
|
|
|
if [ $i -gt 0 ]; then
|
|
|
|
|
sleep 2
|
2004-12-14 13:46:19 +00:00
|
|
|
_modify_level $i
|
2001-11-30 03:24:22 +00:00
|
|
|
fi
|
2006-06-08 12:50:04 +00:00
|
|
|
|
|
|
|
|
_stable_fs
|
|
|
|
|
sleep 2
|
|
|
|
|
|
2002-03-19 04:59:21 +00:00
|
|
|
echo "********* level $i ***********" >>$seq.full
|
|
|
|
|
date >>$seq.full
|
2004-12-14 13:46:19 +00:00
|
|
|
find $SCRATCH_MNT -exec $here/src/lstat64 {} \; | sed 's/(00.*)//' >$tmp.dates.$i
|
2002-03-19 04:59:21 +00:00
|
|
|
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
|
|
|
|
|
|
2001-11-30 03:24:22 +00:00
|
|
|
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"
|
2001-12-03 06:08:15 +00:00
|
|
|
ls -lR $restore_dir | _ls_size_filter | _check_quota_file
|
2001-11-30 03:24:22 +00:00
|
|
|
i=`expr $i + 1`
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
# success, all done
|
|
|
|
|
status=0
|
|
|
|
|
exit
|