Skip to content

Commit 0e05dfa

Browse files
committed
ZTS: Fix replacement/resilver_restart_001 on FreeBSD
Increasing the data files from 16M to 32M fixes the replacement/resilver_restart_001 test. Signed-off-by: Tino Reichardt <[email protected]> Closes: #16822
1 parent 78eb1de commit 0e05dfa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/zfs-tests/tests/functional/replacement/resilver_restart_001.ksh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,12 +121,12 @@ do
121121
log_must zfs create -o primarycache=none -o recordsize=1k $TESTPOOL1/$fs
122122
done
123123

124-
# simultaneously write 16M to each of them
124+
# simultaneously write 32M to each of them
125125
set -A DATAPATHS /$TESTPOOL1/fs{0..3}/dat.0
126126
log_note "Writing data files"
127127
for path in ${DATAPATHS[@]}
128128
do
129-
dd if=/dev/urandom of=$path bs=1M count=16 > /dev/null 2>&1 &
129+
dd if=/dev/urandom of=$path bs=1M count=32 > /dev/null 2>&1 &
130130
done
131131
wait
132132

0 commit comments

Comments
 (0)