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
 
 #

@@ -51,19 +51,19 @@
         for spare in "" "spare"
         do
                 for logtype in "raidz" "raidz1" "raidz2"
                 do
                         log=$(random_get_with_non "log")
-                        log_must $ZPOOL create $TESTPOOL $type $VDEV \
+                        log_must zpool create $TESTPOOL $type $VDEV \
                                 $spare $SDEV $log $LDEV
 
-                        log_mustnot $ZPOOL add $TESTPOOL log $logtype $LDEV2
+                        log_mustnot zpool add $TESTPOOL log $logtype $LDEV2
                         ldev=$(random_get $LDEV2)
                         log_mustnot verify_slog_device \
                                 $TESTPOOL $ldev 'ONLINE' $logtype
 
-                        log_must $ZPOOL destroy $TESTPOOL
+                        log_must zpool destroy $TESTPOOL
                 done
         done
 done
 
 log_pass "A raidz/raidz2 log can not be added to existed pool."