summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-06-15 09:54:08 +0000
committerJim Meyering <jim@meyering.net>2002-06-15 09:54:08 +0000
commit77bc22f77ad560ec2cf5afb25bcedec28de20c08 (patch)
tree8e2df8f4d87901d7dc0a13fab20f26c39f26e7aa /tests
parent646e37ff59dec5ff2181d1c1214d2dd47285d546 (diff)
downloadcoreutils-77bc22f77ad560ec2cf5afb25bcedec28de20c08.tar.xz
(trap): in chmod, use u+rwx, not 700
Diffstat (limited to 'tests')
-rw-r--r--tests/sample-test2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sample-test b/tests/sample-test
index 3af9e6819..5e725c17c 100644
--- a/tests/sample-test
+++ b/tests/sample-test
@@ -13,7 +13,7 @@ fi
pwd=`pwd`
t0=`echo "$0"|sed 's,.*/,,'`.tmp; tmp=$t0/$$
-trap 'status=$?; cd $pwd; chmod -R 700 $t0; rm -rf $t0 && exit $status' 0
+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