summaryrefslogtreecommitdiff
path: root/usr/src/test/zfs-tests/tests/functional/cli_root/zpool_labelclear/zpool_labelclear_exported.ksh
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/test/zfs-tests/tests/functional/cli_root/zpool_labelclear/zpool_labelclear_exported.ksh')
-rw-r--r--usr/src/test/zfs-tests/tests/functional/cli_root/zpool_labelclear/zpool_labelclear_exported.ksh20
1 files changed, 10 insertions, 10 deletions
diff --git a/usr/src/test/zfs-tests/tests/functional/cli_root/zpool_labelclear/zpool_labelclear_exported.ksh b/usr/src/test/zfs-tests/tests/functional/cli_root/zpool_labelclear/zpool_labelclear_exported.ksh
index 82df8216eb..0a9016c471 100644
--- a/usr/src/test/zfs-tests/tests/functional/cli_root/zpool_labelclear/zpool_labelclear_exported.ksh
+++ b/usr/src/test/zfs-tests/tests/functional/cli_root/zpool_labelclear/zpool_labelclear_exported.ksh
@@ -52,21 +52,21 @@ for vdevtype in "" "cache" "spare"; do
log_must zpool export $TESTPOOL
# Check that labelclear will fail without -f
- log_mustnot $LABELCLEAR $disk1
- log_must $LABELREAD $disk1
- log_mustnot $LABELCLEAR $disk2
- log_must $LABELREAD $disk2
+ log_mustnot zpool labelclear $disk1
+ log_must zdb -lq $disk1
+ log_mustnot zpool labelclear $disk2
+ log_must zdb -lq $disk2
# Check that labelclear will succeed with -f
- log_must $LABELCLEAR -f $disk1
- log_mustnot $LABELREAD $disk1
- log_must $LABELCLEAR -f $disk2
- log_mustnot $LABELREAD $disk2
+ log_must zpool labelclear -f $disk1
+ log_mustnot zdb -lq $disk1
+ log_must zpool labelclear -f $disk2
+ log_mustnot zdb -lq $disk2
# Check that labelclear on auxilary vdevs will succeed
if [[ -n $vdevtype ]]; then
- log_must $LABELCLEAR $disk3
- log_mustnot $LABELREAD $disk3
+ log_must zpool labelclear $disk3
+ log_mustnot zdb -lq $disk3
fi
done