From 858d2b2f733bc4c25d50656bf4ac44c1d23f9b83 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 2 Oct 2003 17:13:50 +0000 Subject: *** empty log message *** --- tests/du/inaccessible-cwd | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100755 tests/du/inaccessible-cwd (limited to 'tests/du/inaccessible-cwd') diff --git a/tests/du/inaccessible-cwd b/tests/du/inaccessible-cwd new file mode 100755 index 000000000..e47f9b5ba --- /dev/null +++ b/tests/du/inaccessible-cwd @@ -0,0 +1,33 @@ +#!/bin/sh +# Ensure that even when run from an inaccessible directory, du can still +# operate on accessible directories elsewhere. + +if test "$VERBOSE" = yes; then + set -x + du --version +fi + +PRIV_CHECK_ARG=require-non-root . $srcdir/../priv-check + +pwd=`pwd` +t0=`echo "$0"|sed 's,.*/,,'`.tmp; tmp=$t0/$$ +trap 'status=$?; cd $pwd; chmod -R u+rwx $t0; rm -rf $t0 && exit $status' 0 +trap '(exit $?); exit $?' 1 2 13 15 + +framework_failure=0 +mkdir -p $tmp || framework_failure=1 +cd $tmp || framework_failure=1 +mkdir -p no-x a/b || framework_failure=1 +cd no-x || framework_failure=1 +chmod 0 . || framework_failure=1 + +if test $framework_failure = 1; then + echo "$0: failure in testing framework" 1>&2 + (exit 1); exit 1 +fi + +fail=0 + +du $pwd/$tmp/a > /dev/null || fail=1 + +(exit $fail); exit $fail -- cgit v1.2.3-54-g00ecf