Files
apfstests/tests/xfs/064
T

101 lines
2.1 KiB
Bash
Raw Normal View History

#! /bin/bash
2018-06-09 11:35:45 +10:00
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2000-2002 Silicon Graphics, Inc. All Rights Reserved.
#
# FS QA Test No. 064
#
# test multilevel dump and restores with hardlinks
2001-11-30 03:24:22 +00:00
#
seq=`basename $0`
seqres=$RESULT_DIR/$seq
2001-11-30 03:24:22 +00:00
echo "QA output created by $seq"
here=`pwd`
tmp=/tmp/$$
status=1 # failure is the default!
trap "_cleanup; exit \$status" 0 1 2 3 15
_cleanup()
{
_cleanup_dump
cd /
rm -f $tmp.*
}
2001-11-30 03:24:22 +00:00
# get standard environment, filters and checks
2013-03-15 12:28:04 +00:00
. ./common/rc
. ./common/filter
. ./common/dump
2001-11-30 03:24:22 +00:00
_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 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
_modify_level $i
2001-11-30 03:24:22 +00:00
fi
_stable_fs
sleep 2
echo "********* level $i ***********" >>$seqres.full
date >>$seqres.full
find $SCRATCH_MNT -exec $here/src/lstat64 {} \; | sed 's/(00.*)//' >$tmp.dates.$i
if [ $i -gt 0 ]; then
2009-03-25 20:53:36 +01:00
let level_1=$i-1
diff -c $tmp.dates.$level_1 $tmp.dates.$i >>$seqres.full
else
cat $tmp.dates.$i >>$seqres.full
fi
_do_dump_file -f $tmp.df.level$i -l $i
2009-03-25 20:53:36 +01:00
let i=$i+1
2001-11-30 03:24:22 +00:00
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"
_do_restore_toc -f $tmp.df.level$i
2009-03-25 20:53:36 +01:00
let i=$i+1
2001-11-30 03:24:22 +00:00
done
echo "Do the cumulative restores"
2011-11-01 14:53:04 -05:00
_prepare_restore_dir
2001-11-30 03:24:22 +00:00
i=0
while [ $i -le 9 ]; do
echo ""
echo "restoring from df.level$i"
_do_restore_file_cum -f $tmp.df.level$i
2001-11-30 03:24:22 +00:00
echo "ls -l restore_dir"
2001-12-03 06:08:15 +00:00
ls -lR $restore_dir | _ls_size_filter | _check_quota_file
2009-03-25 20:53:36 +01:00
let i=$i+1
2001-11-30 03:24:22 +00:00
done
# success, all done
status=0
exit