]> git.proxmox.com Git - mirror_zfs.git/blame - tests/zfs-tests/tests/functional/cli_root/zpool_get/zpool_get.cfg
ZTS: events path cleanup
[mirror_zfs.git] / tests / zfs-tests / tests / functional / cli_root / zpool_get / zpool_get.cfg
CommitLineData
6bb24f4d
BB
1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21
22#
23# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
24# Use is subject to license terms.
25#
26
27#
a1d477c2 28# Copyright (c) 2013, 2014 by Delphix. All rights reserved.
bda77af1 29# Copyright 2016 Nexenta Systems, Inc. All rights reserved.
6bb24f4d
BB
30#
31
32# Set the expected properties of zpool
bda77af1
YP
33typeset -a properties=(
34 "size"
35 "capacity"
36 "altroot"
37 "health"
38 "guid"
39 "version"
40 "bootfs"
41 "delegation"
42 "autoreplace"
43 "cachefile"
d2734cce 44 "checkpoint"
bda77af1
YP
45 "failmode"
46 "listsnapshots"
47 "autoexpand"
48 "dedupditto"
49 "dedupratio"
50 "free"
51 "allocated"
52 "readonly"
53 "comment"
54 "expandsize"
55 "freeing"
56 "fragmentation"
57 "leaked"
379ca9cf 58 "multihost"
bda77af1
YP
59 "feature@async_destroy"
60 "feature@empty_bpobj"
61 "feature@lz4_compress"
62 "feature@multi_vdev_crash_dump"
63 "feature@spacemap_histogram"
64 "feature@enabled_txg"
65 "feature@hole_birth"
66 "feature@extensible_dataset"
67 "feature@embedded_data"
68 "feature@bookmarks"
69 "feature@filesystem_limits"
70 "feature@large_blocks"
71 "feature@sha512"
72 "feature@skein"
73 "feature@edonr"
a1d477c2
MA
74 "feature@device_removal"
75 "feature@obsolete_counts"
d2734cce 76 "feature@zpool_checkpoint"
4d044c4c 77 "feature@spacemap_v2"
bda77af1
YP
78)
79
80# Additional properties added for Linux.
6bb24f4d 81if is_linux; then
bda77af1
YP
82 properties+=(
83 "ashift"
84 "feature@large_dnode"
85 "feature@userobj_accounting"
b5256303 86 "feature@encryption"
9c5167d1 87 "feature@project_quota"
bda77af1 88 )
6bb24f4d 89fi