OpenZFS 9004 - Some ZFS tests used files removed with 32 bit kernel

Authored by: John Wren Kennedy <john.kennedy@delphix.com>
Reviewed by: Igor Kozhukhov <igor@dilos.org>
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed by: George Melikov <mail@gmelikov.ru>
Approved by: Dan McDonald <danmcd@joyent.com>
Ported-by: Giuseppe Di Natale <dinatale2@llnl.gov>

OpenZFS-issue: https://www.illumos.org/issues/9004
OpenZFS-commit: https://github.com/openzfs/openzfs/commit/fafe9b241f
Closes #7149
This commit is contained in:
John Wren Kennedy 2018-01-29 15:33:57 -07:00 committed by Brian Behlendorf
parent 1334283225
commit ba779f7f71
2 changed files with 3 additions and 2 deletions

View File

@ -10,6 +10,7 @@
export SYSTEM_FILES='arp export SYSTEM_FILES='arp
awk awk
attr attr
base64
basename basename
bc bc
blkid blkid

View File

@ -12,7 +12,7 @@
# #
# #
# Copyright (c) 2015 by Delphix. All rights reserved. # Copyright (c) 2015, 2018 by Delphix. All rights reserved.
# #
. $STF_SUITE/tests/functional/rsend/rsend.kshlib . $STF_SUITE/tests/functional/rsend/rsend.kshlib
@ -46,7 +46,7 @@ log_must zfs create -o compress=lz4 $sendfs
log_must zfs create -o compress=lz4 $recvfs log_must zfs create -o compress=lz4 $recvfs
typeset dir=$(get_prop mountpoint $sendfs) typeset dir=$(get_prop mountpoint $sendfs)
# Don't use write_compressible: we want compressible but undedupable data here. # Don't use write_compressible: we want compressible but undedupable data here.
log_must file_write -o overwrite -f $dir/file -d R -b 4096 -c 1000 log_must eval "dd if=/dev/urandom bs=1024k count=4 | base64 >$dir/file"
log_must zfs snapshot $sendfs@snap0 log_must zfs snapshot $sendfs@snap0
log_must eval "zfs send -D -c $sendfs@snap0 >$stream0" log_must eval "zfs send -D -c $sendfs@snap0 >$stream0"