*** empty log message ***
authorJim Meyering <jim@meyering.net>
Sun, 25 Jun 2000 20:19:52 +0000 (20:19 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 25 Jun 2000 20:19:52 +0000 (20:19 +0000)
tests/cp/fail-perm

index 332b5b354603229aff3e82101e067e2a088e276f..160b1e76a2ad656c07b856f185c307f45cf2e098 100755 (executable)
@@ -14,13 +14,24 @@ touch D/a || framework_failure=1
 chmod 0 D/a || framework_failure=1
 chmod 500 D || framework_failure=1
 
+touch file || framework_failure=1
+chmod u-w file || framework_failure=1
+(echo foo >> file) >/dev/null 2>&1 && {
+  echo '********************************************'
+  echo "$0: NOTICE: This test case cannot be run as root."
+  echo '********************************************'
+  exit 77
+}
+
 if test $framework_failure = 1; then
   echo 'failure in testing framework'
   exit 1
 fi
 
 fail=0
-cp -pR D DD > /dev/null 2>&1 || fail=1
+
+# This is expected to exit non-zero, because it can't read D/a.
+cp -pR D DD > /dev/null 2>&1 && fail=1
 
 # Permissions on DD must be `dr-x------'