Print this page
7290 ZFS test suite needs to control what utilities it can run
Reviewed by: Dan Kimmel <dan.kimmel@delphix.com>
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
@@ -24,11 +24,11 @@
# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
#
-# Copyright (c) 2013 by Delphix. All rights reserved.
+# Copyright (c) 2013, 2016 by Delphix. All rights reserved.
#
. $STF_SUITE/tests/functional/slog/slog.kshlib
#
@@ -49,22 +49,22 @@
for type in "" "mirror" "raidz" "raidz2"
do
for spare in "" "spare"
do
- log_must $ZPOOL create $TESTPOOL $type $VDEV $spare $SDEV \
+ log_must zpool create $TESTPOOL $type $VDEV $spare $SDEV \
log mirror $LDEV mirror $LDEV2
ldev=$(random_get $LDEV $LDEV2)
- log_must $ZPOOL offline $TESTPOOL $ldev
+ log_must zpool offline $TESTPOOL $ldev
log_must display_status $TESTPOOL
log_must verify_slog_device $TESTPOOL $ldev 'OFFLINE' 'mirror'
- log_must $ZPOOL online $TESTPOOL $ldev
+ log_must zpool online $TESTPOOL $ldev
log_must display_status $TESTPOOL
log_must verify_slog_device $TESTPOOL $ldev 'ONLINE' 'mirror'
- log_must $ZPOOL destroy -f $TESTPOOL
+ log_must zpool destroy -f $TESTPOOL
done
done
log_pass "Offline and online a log device passes."