Skip to content

Commit 31a4ad3

Browse files
committed
Added custom zfs props to cli_user/misc to fix tests
1 parent 4b60101 commit 31a4ad3

File tree

1 file changed

+26
-0
lines changed
  • tests/zfs-tests/tests/functional/cli_user/misc

1 file changed

+26
-0
lines changed

tests/zfs-tests/tests/functional/cli_user/misc/misc.cfg

+26
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,32 @@ if is_linux; then
5454
off /tmp/zfstest 100M off \
5555
512 10m off \
5656
hidden"
57+
elif is_freebsd; then
58+
PROP_NAMES="\
59+
acltype atime \
60+
checksum compression devices \
61+
exec mountpoint quota readonly \
62+
recordsize reservation setuid \
63+
snapdir"
64+
65+
# these are a set of values we apply, for use when testing the
66+
# zfs get/set subcommands - ordered as per the list above so we
67+
# can iterate over both sets in an array
68+
PROP_VALS="\
69+
posixacl on \
70+
fletcher2 on on \
71+
on legacy none on \
72+
128K none on \
73+
visible"
74+
75+
# these are an alternate set of property values
76+
PROP_ALTVALS="\
77+
noacl off \
78+
fletcher4 lzjb off \
79+
off /tmp/zfstest 100M off \
80+
512 10m off \
81+
hidden"
82+
5783
else
5884
# these are the set of setable ZFS properties
5985
PROP_NAMES="\

0 commit comments

Comments
 (0)