7290 ZFS test suite needs to control what utilities it can run
[unleashed.git] / usr / src / test / zfs-tests / tests / functional / cli_root / zfs_copies / zfs_copies_005_neg.ksh
blobae81ae964e7bd0812f64f83b7a7eccbefeec7f50
1 #!/bin/ksh
3 # CDDL HEADER START
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.
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.
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]
20 # CDDL HEADER END
24 # Copyright 2008 Sun Microsystems, Inc. All rights reserved.
25 # Use is subject to license terms.
29 # Copyright (c) 2016 by Delphix. All rights reserved.
32 . $STF_SUITE/include/libtest.shlib
33 . $STF_SUITE/tests/functional/cli_root/zfs_copies/zfs_copies.kshlib
36 # DESCRIPTION:
37 # Verify that copies cannot be set with pool version 1
39 # STRATEGY:
40 # 1. Create filesystems with copies set in a pool with version 1
41 # 2. Verify that the create operations fail
44 verify_runnable "global"
46 function cleanup
48 if poolexists $ZPOOL_VERSION_1_NAME; then
49 destroy_pool $ZPOOL_VERSION_1_NAME
52 if [[ -f $TESTDIR/$ZPOOL_VERSION_1_FILES ]]; then
53 rm -f $TESTDIR/$ZPOOL_VERSION_1_FILES
57 log_assert "Verify that copies cannot be set with pool version 1"
58 log_onexit cleanup
60 cp $STF_SUITE/tests/functional/cli_root/zpool_upgrade/blockfiles/$ZPOOL_VERSION_1_FILES $TESTDIR
61 bunzip2 $TESTDIR/$ZPOOL_VERSION_1_FILES
62 log_must zpool import -d $TESTDIR $ZPOOL_VERSION_1_NAME
63 log_must zfs create $ZPOOL_VERSION_1_NAME/$TESTFS
64 log_must zfs create -V 1m $ZPOOL_VERSION_1_NAME/$TESTVOL
66 for val in 3 2 1; do
67 for ds in $ZPOOL_VERSION_1_NAME/$TESTFS $ZPOOL_VERSION_1_NAME/$TESTVOL; do
68 log_mustnot zfs set copies=$val $ds
69 done
70 for ds in $ZPOOL_VERSION_1_NAME/$TESTFS1 $ZPOOL_VERSION_1_NAME/$TESTVOL1; do
71 log_mustnot zfs create -o copies=$val $ds
72 done
73 done
75 log_pass "Verification pass: copies cannot be set with pool version 1. "