diff options
author | John Wren Kennedy <[email protected]> | 2018-01-29 15:33:57 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2018-02-09 10:28:44 -0800 |
commit | ba779f7f7102bf9cc96eb7c7ba577e283d1a0f63 (patch) | |
tree | 5e8953d172b6236dc1f1e2b85eebaf797737ca29 /tests | |
parent | 13342832252c43a0b372b41cb6319377d160bc15 (diff) |
OpenZFS 9004 - Some ZFS tests used files removed with 32 bit kernel
Authored by: John Wren Kennedy <[email protected]>
Reviewed by: Igor Kozhukhov <[email protected]>
Reviewed by: Matthew Ahrens <[email protected]>
Reviewed by: Brian Behlendorf <[email protected]>
Reviewed by: George Melikov <[email protected]>
Approved by: Dan McDonald <[email protected]>
Ported-by: Giuseppe Di Natale <[email protected]>
OpenZFS-issue: https://www.illumos.org/issues/9004
OpenZFS-commit: https://github.com/openzfs/openzfs/commit/fafe9b241f
Closes #7149
Diffstat (limited to 'tests')
-rw-r--r-- | tests/zfs-tests/include/commands.cfg | 1 | ||||
-rwxr-xr-x | tests/zfs-tests/tests/functional/rsend/send-cD.ksh | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/tests/zfs-tests/include/commands.cfg b/tests/zfs-tests/include/commands.cfg index 113b83c75..e6f04060c 100644 --- a/tests/zfs-tests/include/commands.cfg +++ b/tests/zfs-tests/include/commands.cfg @@ -10,6 +10,7 @@ export SYSTEM_FILES='arp awk attr + base64 basename bc blkid diff --git a/tests/zfs-tests/tests/functional/rsend/send-cD.ksh b/tests/zfs-tests/tests/functional/rsend/send-cD.ksh index c51788f81..ceface9db 100755 --- a/tests/zfs-tests/tests/functional/rsend/send-cD.ksh +++ b/tests/zfs-tests/tests/functional/rsend/send-cD.ksh @@ -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 @@ -46,7 +46,7 @@ log_must zfs create -o compress=lz4 $sendfs log_must zfs create -o compress=lz4 $recvfs typeset dir=$(get_prop mountpoint $sendfs) # 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 eval "zfs send -D -c $sendfs@snap0 >$stream0" |