]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
*** empty log message ***
authorJim Meyering <jim@meyering.net>
Sun, 23 Jul 2000 09:02:29 +0000 (09:02 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 23 Jul 2000 09:02:29 +0000 (09:02 +0000)
tests/cp/dir-slash

index 130024d580e6c8a42c88978662594241233d3e2b..2694d6b345a02b54da03db83341ccdd904340235 100755 (executable)
@@ -26,8 +26,13 @@ fi
 
 fail=0
 cp -R dir1/ dir2 || fail=1
-test -d dir2/dir1/file || fail=1
-test -d dir1/file || fail=1
+
+# This file should not exist, but it did with fileutils-4.0w.
+test -r dir2/file && fail=1
+
+# These two should.
+test -r dir2/dir1/file || fail=1
+test -r dir1/file || fail=1
 
 (exit $fail)
 exit $fail