Skip to content

Commit b81428a

Browse files
committed
ZTS: Reduce file size in redacted_panic to 1GB
This test takes 3 minutes on RELEASE FreeBSD bots, but on CURRENT, probably due to debugging it has in kernel, it does not complete within 10 minutes, ending up killed. As I see all the redacting here happens within the first ~128MB of the file, so I hope it won't matter if there is 1GB of data instead of 2GB. Signed-off-by: Alexander Motin <[email protected]> Sponsored by: iXsystems, Inc.
1 parent d034cf6 commit b81428a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/zfs-tests/tests/functional/redacted_send/redacted_panic.ksh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function cleanup
3939
log_onexit cleanup
4040

4141
log_must zfs create -o recsize=8k $sendfs
42-
log_must dd if=/dev/urandom of=/$sendfs/file bs=1024k count=2048
42+
log_must dd if=/dev/urandom of=/$sendfs/file bs=1024k count=1024
4343
log_must zfs snapshot $sendfs@init
4444
log_must zfs clone $sendfs@init $clone
4545
log_must stride_dd -i /dev/urandom -o /$clone/file -b 8192 -s 2 -c 7226

0 commit comments

Comments
 (0)