]> git.proxmox.com Git - mirror_zfs.git/blobdiff - tests/zfs-tests/tests/functional/cli_root/zpool_get/zpool_get.cfg
Project Quota on ZFS
[mirror_zfs.git] / tests / zfs-tests / tests / functional / cli_root / zpool_get / zpool_get.cfg
index f7a1d9cb13533369528bbc3c11fb1936d633c12a..d5791372d0e4389a807b2e0f65ba7f749a9ada30 100644 (file)
 
 #
 # Copyright (c) 2013 by Delphix. All rights reserved.
+# Copyright 2016 Nexenta Systems, Inc. All rights reserved.
 #
 
 # Set the expected properties of zpool
+typeset -a properties=(
+    "size"
+    "capacity"
+    "altroot"
+    "health"
+    "guid"
+    "version"
+    "bootfs"
+    "delegation"
+    "autoreplace"
+    "cachefile"
+    "failmode"
+    "listsnapshots"
+    "autoexpand"
+    "dedupditto"
+    "dedupratio"
+    "free"
+    "allocated"
+    "readonly"
+    "comment"
+    "expandsize"
+    "freeing"
+    "fragmentation"
+    "leaked"
+    "multihost"
+    "feature@async_destroy"
+    "feature@empty_bpobj"
+    "feature@lz4_compress"
+    "feature@multi_vdev_crash_dump"
+    "feature@spacemap_histogram"
+    "feature@enabled_txg"
+    "feature@hole_birth"
+    "feature@extensible_dataset"
+    "feature@embedded_data"
+    "feature@bookmarks"
+    "feature@filesystem_limits"
+    "feature@large_blocks"
+    "feature@sha512"
+    "feature@skein"
+    "feature@edonr"
+)
+
+# Additional properties added for Linux.
 if is_linux; then
-typeset -a properties=("size" "capacity" "altroot" "health" "guid" "version"
-    "bootfs" "delegation" "autoreplace" "cachefile" "dedupditto" "dedupratio"
-    "free" "allocated" "readonly" "comment" "expandsize" "freeing" "failmode"
-    "listsnapshots" "autoexpand" "fragmentation" "leaked" "ashift"
-    "feature@async_destroy" "feature@empty_bpobj" "feature@lz4_compress"
-    "feature@large_blocks" "feature@large_dnode" "feature@filesystem_limits"
-    "feature@spacemap_histogram" "feature@enabled_txg" "feature@hole_birth"
-    "feature@extensible_dataset" "feature@bookmarks" "feature@embedded_data")
-else
-typeset -a properties=("size" "capacity" "altroot" "health" "guid" "version"
-    "bootfs" ""leaked" delegation" "autoreplace" "cachefile" "dedupditto" "dedupratio"
-    "free" "allocated" "readonly" "comment" "expandsize" "freeing" "failmode"
-    "listsnapshots" "autoexpand" "feature@async_destroy" "feature@empty_bpobj"
-    "feature@lz4_compress" "feature@multi_vdev_crash_dump"
-    "feature@spacemap_histogram" "feature@enabled_txg" "feature@hole_birth"
-    "feature@extensible_dataset" "feature@bookmarks")
+       properties+=(
+           "ashift"
+           "feature@large_dnode"
+           "feature@userobj_accounting"
+           "feature@encryption"
+           "feature@project_quota"
+       )
 fi