From 94aebe4774d0abf597e7fbb691b42bf4d4691e52 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 22 Dec 1999 14:30:23 +0000 Subject: Use $file, not $tmp/file. Exit 77 if run as root. --- tests/shred/remove | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'tests/shred') diff --git a/tests/shred/remove b/tests/shred/remove index c62e8883e..2bcd6a619 100755 --- a/tests/shred/remove +++ b/tests/shred/remove @@ -15,7 +15,7 @@ file=$tmp/0123456789 framework_failure=0 mkdir $tmp || framework_failure=1 -touch $tmp/file || framework_failure=1 +touch $file || framework_failure=1 chmod u-w $tmp || framework_failure=1 if test $framework_failure = 1; then @@ -23,12 +23,17 @@ if test $framework_failure = 1; then exit 1 fi +touch $tmp/file >/dev/null 2>&1 && { + echo 'This test case can not be run as root' + exit 77 +} + fail=0 # This would take so long that it appears to infloop # when using version from fileutils-4.0k. # When the command completes, expect it to fail. -shred -u $tmp/file > /dev/null 2>&1 && fail=1 +shred -u $file > /dev/null 2>&1 && fail=1 chmod u+w $tmp rm -rf $tmp -- cgit v1.2.3-70-g09d2