xref: /illumos-gate/usr/src/test/zfs-tests/tests/functional/bootfs/bootfs_008_pos.ksh (revision 96dd34fce4380f5569e21176b9b310b458e5fb13)
1#!/usr/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#
24# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
25# Use is subject to license terms.
26#
27
28#
29# Copyright (c) 2012, 2016 by Delphix. All rights reserved.
30# Copyright 2019 Joyent, Inc.
31#
32
33. $STF_SUITE/include/libtest.shlib
34
35#
36# DESCRIPTION:
37#
38# setting bootfs on a dataset which has gzip compression enabled will not fail
39#
40# STRATEGY:
41# 1. create pools based on a valid vdev
42# 2. create a filesystem on this pool and set the compression property to
43#    gzip1-9
44# 3. set the pool's bootfs property to filesystem we just configured which
45#    should not fail
46#
47
48verify_runnable "global"
49
50function cleanup {
51	if poolexists $TESTPOOL ; then
52		destroy_pool "$TESTPOOL"
53	fi
54
55	if [[ -f $VDEV ]]; then
56		log_must rm -f $VDEV
57	fi
58}
59
60typeset assert_msg="setting bootfs on a dataset which has gzip \
61    compression enabled will not fail"
62
63typeset VDEV=$TESTDIR/bootfs_008_pos_a.$$.dat
64typeset COMP_FS=$TESTPOOL/COMP_FS
65
66log_onexit cleanup
67log_assert $assert_msg
68
69log_must mkfile $MINVDEVSIZE $VDEV
70log_must zpool create $TESTPOOL $VDEV
71log_must zfs create $COMP_FS
72
73typeset -i i=0
74set -A gtype "gzip" "gzip-1" "gzip-2" "gzip-3" "gzip-4" "gzip-5" \
75	     "gzip-6" "gzip-7" "gzip-8" "gzip-9"
76
77while (( i < ${#gtype[@]} )); do
78	log_must zfs set compression=${gtype[i]} $COMP_FS
79	log_must zpool set bootfs=$COMP_FS $TESTPOOL
80	log_must zfs set compression=off $COMP_FS
81	(( i += 1 ))
82done
83
84log_pass $assert_msg
85