ZTS: Don't use edonr on FreeBSD

FreeBSD doesn't support feature@edonr.

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Ryan Moeller <ryan@iXsystems.com>
Closes #9901
This commit is contained in:
Ryan Moeller
2020-01-28 11:38:02 -05:00
committed by Brian Behlendorf
parent 7a298ae975
commit 0ecd910923
5 changed files with 19 additions and 14 deletions
+6 -1
View File
@@ -13,9 +13,14 @@
# Copyright (c) 2012, 2016, Delphix. All rights reserved.
#
. $STF_SUITE/include/libtest.shlib
typeset -a compress_prop_vals=('off' 'lzjb' 'lz4' 'gzip' 'zle')
typeset -a checksum_prop_vals=('on' 'off' 'fletcher2' 'fletcher4' 'sha256'
'noparity' 'sha512' 'skein' 'edonr')
'noparity' 'sha512' 'skein')
if ! is_freebsd; then
checksum_prop_vals+=('edonr')
fi
typeset -a recsize_prop_vals=('512' '1024' '2048' '4096' '8192' '16384'
'32768' '65536' '131072' '262144' '524288' '1048576')
typeset -a canmount_prop_vals=('on' 'off' 'noauto')