]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Don't create temporary directory -- we don't use it.
authorJim Meyering <jim@meyering.net>
Sat, 19 Jul 2003 11:59:12 +0000 (11:59 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 19 Jul 2003 11:59:12 +0000 (11:59 +0000)
tests/rm/fail-eperm

index cb0d6fc2504bb572ae56a428383c63271e7e02f5..bbcee4564c8cd330a5eb7b61506b19a2dd3bc0fa 100755 (executable)
@@ -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=.}