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>
*** 23,33 ****
# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
#
! # Copyright (c) 2013 by Delphix. All rights reserved.
#
. $STF_SUITE/include/libtest.shlib
. $STF_SUITE/tests/functional/userquota/userquota_common.kshlib
--- 23,33 ----
# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
#
! # Copyright (c) 2013, 2016 by Delphix. All rights reserved.
#
. $STF_SUITE/include/libtest.shlib
. $STF_SUITE/tests/functional/userquota/userquota_common.kshlib
*** 50,75 ****
log_onexit cleanup
log_assert "overwrite any of the {user|group}quota size, it will fail"
log_note "overwrite to $QFS to make it exceed userquota"
! log_must $ZFS set userquota@$QUSER1=$UQUOTA_SIZE $QFS
! log_must $ZFS set groupquota@$QGROUP=$GQUOTA_SIZE $QFS
mkmount_writable $QFS
! log_must user_run $QUSER1 $MKFILE $UQUOTA_SIZE $QFILE
! $SYNC
! log_must eval "$ZFS get -p userused@$QUSER1 $QFS >/dev/null 2>&1"
! log_must eval "$ZFS get -p groupused@$GROUPUSED $QFS >/dev/null 2>&1"
! log_mustnot user_run $QUSER1 $MKFILE 1 $OFILE
! log_must $RM -f $QFILE
log_note "overwrite to $QFS to make it exceed userquota"
! log_mustnot user_run $QUSER1 $MKFILE $GQUOTA_SIZE $QFILE
! log_must eval "$ZFS get -p userused@$QUSER1 $QFS >/dev/null 2>&1"
! log_must eval "$ZFS get -p groupused@$GROUPUSED $QFS >/dev/null 2>&1"
log_pass "overwrite any of the {user|group}quota size, it fail as expect"
--- 50,75 ----
log_onexit cleanup
log_assert "overwrite any of the {user|group}quota size, it will fail"
log_note "overwrite to $QFS to make it exceed userquota"
! log_must zfs set userquota@$QUSER1=$UQUOTA_SIZE $QFS
! log_must zfs set groupquota@$QGROUP=$GQUOTA_SIZE $QFS
mkmount_writable $QFS
! log_must user_run $QUSER1 mkfile $UQUOTA_SIZE $QFILE
! sync
! log_must eval "zfs get -p userused@$QUSER1 $QFS >/dev/null 2>&1"
! log_must eval "zfs get -p groupused@$GROUPUSED $QFS >/dev/null 2>&1"
! log_mustnot user_run $QUSER1 mkfile 1 $OFILE
! log_must rm -f $QFILE
log_note "overwrite to $QFS to make it exceed userquota"
! log_mustnot user_run $QUSER1 mkfile $GQUOTA_SIZE $QFILE
! log_must eval "zfs get -p userused@$QUSER1 $QFS >/dev/null 2>&1"
! log_must eval "zfs get -p groupused@$GROUPUSED $QFS >/dev/null 2>&1"
log_pass "overwrite any of the {user|group}quota size, it fail as expect"