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 2009 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/include/libtest.shlib
. $STF_SUITE/tests/functional/userquota/userquota_common.kshlib
#
@@ -54,21 +54,21 @@
log_assert "If write operation overwrite {user|group}quota size, it will fail"
mkmount_writable $QFS
log_note "Check the userquota@$QUSER1"
-log_must $ZFS set userquota@$QUSER1=$UQUOTA_SIZE $QFS
-log_must user_run $QUSER1 $MKFILE $UQUOTA_SIZE $QFILE
-$SYNC
-log_mustnot user_run $QUSER1 $MKFILE 1 $OFILE
+log_must zfs set userquota@$QUSER1=$UQUOTA_SIZE $QFS
+log_must user_run $QUSER1 mkfile $UQUOTA_SIZE $QFILE
+sync
+log_mustnot user_run $QUSER1 mkfile 1 $OFILE
cleanup_quota
log_note "Check the groupquota@$QGROUP"
-log_must $ZFS set groupquota@$QGROUP=$GQUOTA_SIZE $QFS
+log_must zfs set groupquota@$QGROUP=$GQUOTA_SIZE $QFS
mkmount_writable $QFS
-log_must user_run $QUSER1 $MKFILE $GQUOTA_SIZE $QFILE
-$SYNC
-log_mustnot user_run $QUSER1 $MKFILE 1 $OFILE
+log_must user_run $QUSER1 mkfile $GQUOTA_SIZE $QFILE
+sync
+log_mustnot user_run $QUSER1 mkfile 1 $OFILE
cleanup_quota
log_pass "Write operation overwrite {user|group}quota size, it as expect"