-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTEST34
More file actions
executable file
·64 lines (47 loc) · 1.76 KB
/
TEST34
File metadata and controls
executable file
·64 lines (47 loc) · 1.76 KB
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
#!/usr/bin/env bash
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2018-2024, Intel Corporation
# Copyright 2025-2026, Hewlett Packard Enterprise Development LP
#
#
# pmempool_sync/TEST34 -- test for sync command
# with bad blocks recovery files
# and one bad block:
# - offset: 1000 length: 250
# in the 1st part
#
. ../unittest/unittest.sh
. setup.sh
require_test_type medium
require_build_type debug nondebug
require_linked_with_ndctl $PMEMPOOL$EXESUFFIX
setup
require_sds $PMEMPOOL$EXESUFFIX
LOG=out${UNITTEST_NUM}.log
rm -f $LOG && touch $LOG
POOLSET=$DIR/testset1
create_poolset $POOLSET \
${PARTSIZE}M:$DIR/testfile0:z \
${PARTSIZE}M:$DIR/testfile1:z \
${PARTSIZE}M:$DIR/testfile2:z \
R \
${POOLSIZE_REP}M:$DIR/testfile3:z
expect_normal_exit $PMEMPOOL$EXESUFFIX rm $POOLSET
expect_normal_exit $PMEMPOOL$EXESUFFIX create obj --layout pmempool$SUFFIX $POOLSET
expect_normal_exit "$OBJ_VERIFY$EXESUFFIX $POOLSET pmempool$SUFFIX c v &>> $LOG"
# zero blocks: offset: 1000 length: 250 in the 1st part
zero_blocks $DIR/testfile0 1000 250
# fail because of bad blocks
expect_abnormal_exit "$OBJ_VERIFY$EXESUFFIX $POOLSET pmempool$SUFFIX v &>> $LOG"
# create recovery files
create_recovery_file $DIR/testset1_r0_p0_badblocks.txt 1000 250
create_recovery_file $DIR/testset1_r0_p1_badblocks.txt
create_recovery_file $DIR/testset1_r0_p2_badblocks.txt
create_recovery_file $DIR/testset1_r1_p0_badblocks.txt
# fail because of recovery files
expect_abnormal_exit "$OBJ_VERIFY$EXESUFFIX $POOLSET pmempool$SUFFIX v &>> $LOG"
# repair
expect_normal_exit "$PMEMPOOL$EXESUFFIX sync -b -v $POOLSET >> $LOG"
expect_normal_exit "$OBJ_VERIFY$EXESUFFIX $POOLSET pmempool$SUFFIX v &>> $LOG"
check
pass