Skip to content

Commit

Permalink
add tests for adaptive compression
Browse files Browse the repository at this point in the history
add adaptive compression to the basic test suite

Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
  • Loading branch information
kjeld Schouten-Lebbing committed Sep 30, 2020
1 parent b91a5ca commit fe3c78e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/zfs-tests/include/properties.shlib
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

. $STF_SUITE/include/libtest.shlib

typeset -a compress_prop_vals=('off' 'lzjb' 'lz4' 'gzip' 'zle' 'zstd')
typeset -a compress_prop_vals=('off' 'lzjb' 'lz4' 'gzip' 'zle' 'zstd' 'adaptive')
typeset -a checksum_prop_vals=('on' 'off' 'fletcher2' 'fletcher4' 'sha256'
'noparity' 'sha512' 'skein')
if ! is_freebsd; then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ props=(
compression gzip compression gzip-$((RANDOM%9 + 1))
compression zstd compression zstd-$((RANDOM%9 + 1))
compression zstd-fast copies $((RANDOM%3 + 1))
compression zstd-fast-$((RANDOM%9 + 1))
compression adaptive compression zstd-fast-$((RANDOM%9 + 1))
)
elif is_freebsd; then
# property value property value
Expand Down

0 comments on commit fe3c78e

Please sign in to comment.