blob: 0c2ad8979536c8390c5dd463a113c0a97a55b50e (
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
|
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2014 Fujitsu. All Rights Reserved.
#
# FSQA Test No. 004
#
# Test "dump | restore"(as opposed to a tape)
#
. ./common/preamble
_begin_fstest auto dump
# Override the default cleanup function.
_cleanup()
{
cd /
rm -f $tmp.*
# remove the generated data, which is much and meaningless.
rm -rf $restore_dir
}
# Import common functions.
. ./common/filter
dump_dir=$SCRATCH_MNT/dump_restore_dir
restore_dir=$TEST_DIR/dump_restore_dir
workout()
{
echo "Run fsstress" >> $seqres.full
args=`_scale_fsstress_args -z -f creat=5 -f write=20 -f mkdir=5 -n 100 -p 15 -d $dump_dir`
echo "fsstress $args" >> $seqres.full
$FSSTRESS_PROG $args >> $seqres.full 2>&1
echo "start Dump/Restore" >> $seqres.full
cd $TEST_DIR
$DUMP_PROG -0 -f - $dump_dir 2>/dev/null | $RESTORE_PROG -urvf - >> $seqres.full 2>&1
if [ $? -ne 0 ];then
_fail "Dump/Restore failed"
fi
rm -rf restoresymtable
}
# real QA test starts here
_supported_fs ext4
_require_test
_require_scratch
_require_command "$DUMP_PROG" dump
_require_command "$RESTORE_PROG" restore
echo "Silence is golden"
_scratch_mkfs_sized $((512 * 1024 * 1024)) >> $seqres.full 2>&1
_scratch_mount
rm -rf $restore_dir $TEST_DIR/restoresymtable
workout
diff -r $dump_dir $restore_dir
status=0
exit
|