mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-06-13 09:14:58 +03:00

If block cloning is disabled by default then enable it when running the bclone tests. Follow up to #15529. Reviewed-by: Brian Atkinson <batkinson@lanl.gov> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #15796
51 lines
1.4 KiB
Bash
Executable File
51 lines
1.4 KiB
Bash
Executable File
#!/bin/ksh -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 https://opensource.org/licenses/CDDL-1.0.
|
|
# 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
|
|
#
|
|
|
|
#
|
|
# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
|
|
# Use is subject to license terms.
|
|
#
|
|
|
|
#
|
|
# Copyright (c) 2023 by Pawel Jakub Dawidek
|
|
#
|
|
|
|
. $STF_SUITE/include/libtest.shlib
|
|
. $STF_SUITE/tests/functional/bclone/bclone.cfg
|
|
|
|
if ! command -v clonefile > /dev/null ; then
|
|
log_unsupported "clonefile program required to test block cloning"
|
|
fi
|
|
|
|
if tunable_exists BCLONE_ENABLED ; then
|
|
log_must save_tunable BCLONE_ENABLED
|
|
log_must set_tunable32 BCLONE_ENABLED 1
|
|
fi
|
|
|
|
DISK=${DISKS%% *}
|
|
|
|
default_setup_noexit $DISK "true"
|
|
log_must zpool set feature@block_cloning=enabled $TESTPOOL
|
|
log_must zfs create $TESTSRCFS
|
|
log_must zfs create $TESTDSTFS
|
|
log_pass
|