Skip to content

Commit 69139c8

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 <milky-zfs@mcmilk.de> Closes: #16822
1 parent d947b9a commit 69139c8

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

+2-2
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)