diff options
Diffstat (limited to 'tests/chown')
-rwxr-xr-x | tests/chown/basic | 8 | ||||
-rwxr-xr-x | tests/chown/deref | 8 | ||||
-rwxr-xr-x | tests/chown/preserve-root | 8 | ||||
-rwxr-xr-x | tests/chown/separator | 8 |
4 files changed, 8 insertions, 24 deletions
diff --git a/tests/chown/basic b/tests/chown/basic index f161b536b..3ad43b403 100755 --- a/tests/chown/basic +++ b/tests/chown/basic @@ -16,12 +16,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -if test "$VERBOSE" = yes; then - set -x - chgrp --version -fi - -. $srcdir/test-lib.sh +. "${srcdir=.}/init.sh"; path_prepend_ ../src +test "$VERBOSE" = yes && chgrp --version require_root_ touch f || framework_failure diff --git a/tests/chown/deref b/tests/chown/deref index 7a269e756..85603b429 100755 --- a/tests/chown/deref +++ b/tests/chown/deref @@ -17,12 +17,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -if test "$VERBOSE" = yes; then - set -x - chown --version -fi - -. $srcdir/test-lib.sh +. "${srcdir=.}/init.sh"; path_prepend_ ../src +test "$VERBOSE" = yes && chown --version ln -s no-such dangle || framework_failure diff --git a/tests/chown/preserve-root b/tests/chown/preserve-root index 81483db5b..c01149629 100755 --- a/tests/chown/preserve-root +++ b/tests/chown/preserve-root @@ -16,12 +16,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -if test "$VERBOSE" = yes; then - set -x - chown --version -fi - -. $srcdir/test-lib.sh +. "${srcdir=.}/init.sh"; path_prepend_ ../src +test "$VERBOSE" = yes && chown --version skip_if_root_ mkdir d && ln -s / d/slink-to-root diff --git a/tests/chown/separator b/tests/chown/separator index 4c204f126..914d9cca4 100755 --- a/tests/chown/separator +++ b/tests/chown/separator @@ -16,12 +16,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -if test "$VERBOSE" = yes; then - set -x - chown --version -fi - -. $srcdir/test-lib.sh +. "${srcdir=.}/init.sh"; path_prepend_ ../src +test "$VERBOSE" = yes && chown --version id_u=`id -u` || framework_failure test -n "$id_u" || framework_failure |