]> git.proxmox.com Git - mirror_zfs.git/blob - tests/zfs-tests/tests/functional/features/large_dnode/large_dnode_007_neg.ksh
Implement large_dnode pool feature
[mirror_zfs.git] / tests / zfs-tests / tests / functional / features / large_dnode / large_dnode_007_neg.ksh
1 #!/bin/ksh -p
2 #
3 # CDDL HEADER START
4 #
5 # The contents of this file are subject to the terms of the
6 # Common Development and Distribution License (the "License").
7 # You may not use this file except in compliance with the License.
8 #
9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 # or http://www.opensolaris.org/os/licensing.
11 # See the License for the specific language governing permissions
12 # and limitations under the License.
13 #
14 # When distributing Covered Code, include this CDDL HEADER in each
15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 # If applicable, add the following below this CDDL HEADER, with the
17 # fields enclosed by brackets "[]" replaced with your own identifying
18 # information: Portions Copyright [yyyy] [name of copyright owner]
19 #
20 # CDDL HEADER END
21 #
22
23 . $STF_SUITE/include/libtest.shlib
24
25 #
26 # DESCRIPTION:
27 # Verify that the dnodesize dataset property won't accept a value
28 # other than "legacy" if the large_dnode feature is not enabled.
29 #
30
31 verify_runnable "both"
32
33 function cleanup
34 {
35 if datasetexists $LGCYPOOL ; then
36 log_must $ZPOOL destroy -f $LGCYPOOL
37 fi
38 }
39
40 log_onexit cleanup
41
42 log_assert "values other than dnodesize=legacy rejected by legacy pool"
43
44 set -A prop_vals "auto" "1k" "2k" "4k" "8k" "16k"
45
46 LGCYPOOL=lgcypool
47 LGCYFS=$LGCYPOOL/legacy
48 log_must $MKFILE 64M $TESTDIR/$LGCYPOOL
49 log_must $ZPOOL create -d $LGCYPOOL $TESTDIR/$LGCYPOOL
50 log_must $ZFS create $LGCYFS
51
52 for val in ${prop_vals[@]} ; do
53 log_mustnot $ZFS set dnodesize=$val $LGCYFS
54 done
55
56 log_pass