summaryrefslogtreecommitdiff
path: root/tests/rm/fail-eperm
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-07-19 11:59:12 +0000
committerJim Meyering <jim@meyering.net>2003-07-19 11:59:12 +0000
commit30c42b20898564333677a4e2b05ecfb85f5ad288 (patch)
tree6fed68e6fae36244af242f1f4bc38a93ed5bc719 /tests/rm/fail-eperm
parent1ce4f09d1eb292daf75ea22f2eaa5b3bdb479dfd (diff)
downloadcoreutils-30c42b20898564333677a4e2b05ecfb85f5ad288.tar.xz
Don't create temporary directory -- we don't use it.
Diffstat (limited to 'tests/rm/fail-eperm')
-rwxr-xr-xtests/rm/fail-eperm18
1 files changed, 4 insertions, 14 deletions
diff --git a/tests/rm/fail-eperm b/tests/rm/fail-eperm
index cb0d6fc25..bbcee4564 100755
--- a/tests/rm/fail-eperm
+++ b/tests/rm/fail-eperm
@@ -8,21 +8,11 @@ if test "$VERBOSE" = yes; then
rm --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
+# FIXME-someday: when run as root we don't need all of the
+# searching below. root can simply create the required
+# dir/files and run the test as someone else.
-if test $framework_failure = 1; then
- echo "$0: failure in testing framework" 1>&2
- (exit 1); exit 1
-fi
+PRIV_CHECK_ARG=require-non-root . $srcdir/../priv-check
: ${PERL=perl}
: ${srcdir=.}