diff options
author | Ryan Moeller <[email protected]> | 2020-01-28 11:38:02 -0500 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2020-01-28 08:38:02 -0800 |
commit | 0ecd9109238f1e322b9a3a44781277b7b7ce5c38 (patch) | |
tree | 3cf1363ccaee37aa6f9c2f9efadad7c7b350c49c /tests/zfs-tests/include/properties.shlib | |
parent | 7a298ae97589d758d2b9aadf78b91a2af450d37a (diff) |
ZTS: Don't use edonr on FreeBSD
FreeBSD doesn't support feature@edonr.
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Ryan Moeller <[email protected]>
Closes #9901
Diffstat (limited to 'tests/zfs-tests/include/properties.shlib')
-rw-r--r-- | tests/zfs-tests/include/properties.shlib | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/zfs-tests/include/properties.shlib b/tests/zfs-tests/include/properties.shlib index 1b6f5a4e5..a6a338912 100644 --- a/tests/zfs-tests/include/properties.shlib +++ b/tests/zfs-tests/include/properties.shlib @@ -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') |