-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ZTS: test clearing pool and vdev userprops
Confirming that clearing pool and vdev userprops produce the same result: an empty value, with default source. Sponsored-by: Klara, Inc. Sponsored-by: Wasabi Technology, Inc. Reviewed-by: Brian Behlendorf <[email protected]> Reviewed-by: Alexander Motin <[email protected]> Signed-off-by: Rob Norris <[email protected]> Closes #16887
- Loading branch information
1 parent
03b7cfd
commit c4e5fa5
Showing
4 changed files
with
85 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
tests/zfs-tests/tests/functional/cli_root/zpool_set/zpool_set_clear_userprop.ksh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#!/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 (c) 2024, Klara, Inc. | ||
# | ||
|
||
. $STF_SUITE/tests/functional/cli_root/zpool_set/zpool_set_common.kshlib | ||
|
||
verify_runnable "both" | ||
|
||
log_assert "Setting a user-defined property to the empty string removes it." | ||
log_onexit cleanup_user_prop $TESTPOOL | ||
|
||
log_must zpool set cool:pool=hello $TESTPOOL | ||
log_must check_user_prop $TESTPOOL cool:pool hello local | ||
log_must zpool set cool:pool= $TESTPOOL | ||
log_must check_user_prop $TESTPOOL cool:pool '-' default | ||
|
||
log_must zpool set cool:vdev=goodbye $TESTPOOL root | ||
log_must check_vdev_user_prop $TESTPOOL root cool:vdev goodbye local | ||
log_must zpool set cool:vdev= $TESTPOOL root | ||
log_must check_vdev_user_prop $TESTPOOL root cool:vdev '-' default | ||
|
||
log_pass "Setting a user-defined property to the empty string removes it." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters