003 File Manager
Current Path:
/usr/src/tests/sys/cddl/zfs/tests/cli_user/zfs_list
usr
/
src
/
tests
/
sys
/
cddl
/
zfs
/
tests
/
cli_user
/
zfs_list
/
📁
..
📄
Makefile
(697 B)
📄
cleanup.ksh
(1.07 KB)
📄
setup.ksh
(2.13 KB)
📄
zfs_list.cfg
(1.26 KB)
📄
zfs_list.kshlib
(3.16 KB)
📄
zfs_list_001_pos.ksh
(3.69 KB)
📄
zfs_list_002_pos.ksh
(6.32 KB)
📄
zfs_list_003_pos.ksh
(2.32 KB)
📄
zfs_list_004_neg.ksh
(2.14 KB)
📄
zfs_list_005_pos.ksh
(6.92 KB)
📄
zfs_list_006_pos.ksh
(3.46 KB)
📄
zfs_list_007_pos.ksh
(3.14 KB)
📄
zfs_list_008_neg.ksh
(2.12 KB)
📄
zfs_list_test.sh
(7.53 KB)
Editing: setup.ksh
#!/usr/local/bin/ksh93 -p # # CDDL HEADER START # # The contents of this file are subject to the terms of the # Common Development and Distribution License (the "License"). # You may not use this file except in compliance with the License. # # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE # or http://www.opensolaris.org/os/licensing. # See the License for the specific language governing permissions # and limitations under the License. # # When distributing Covered Code, include this CDDL HEADER in each # file and include the License file at usr/src/OPENSOLARIS.LICENSE. # If applicable, add the following below this CDDL HEADER, with the # fields enclosed by brackets "[]" replaced with your own identifying # information: Portions Copyright [yyyy] [name of copyright owner] # # CDDL HEADER END # # $FreeBSD$ # # Copyright 2009 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # # ident "@(#)setup.ksh 1.6 09/06/22 SMI" # . $STF_SUITE/include/libtest.kshlib . $STF_SUITE/tests/cli_root/zfs_get/zfs_get_list_d.kshlib DISK=${DISKS%% *} default_setup_noexit $DISK # create datasets and set checksum options set -A cksumarray $CKSUMOPTS typeset -i index=0 for dataset in $DATASETS do log_must $ZFS create $TESTPOOL/$TESTFS/$dataset enc=$(get_prop encryption $TESTPOOL/$TESTFS/$dataset) if [[ $? -eq 0 ]] && [[ -n "$enc" ]] && [[ "$enc" != "off" ]]; then log_unsupported "checksum property can't be changed \ when encryption is set to on." fi $SLEEP 1 log_must $ZFS snapshot $TESTPOOL/$TESTFS/${dataset}@snap $SLEEP 1 if is_global_zone ; then log_must $ZFS create -V 64M $TESTPOOL/$TESTFS/${dataset}-vol $SLEEP 1 log_must $ZFS snapshot $TESTPOOL/$TESTFS/${dataset}-vol@snap fi # sleep to ensure that the datasets have different creation dates $SLEEP 1 log_must $ZFS set checksum=${cksumarray[$index]} \ $TESTPOOL/$TESTFS/$dataset if datasetexists $TESTPOOL/$TESTFS/${dataset}-vol; then log_must $ZFS set checksum=${cksumarray[$index]} \ $TESTPOOL/$TESTFS/${dataset}-vol fi index=$((index + 1)) done if zfs_get_list_d_supported ; then depth_fs_setup fi log_pass
Upload File
Create Folder