1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-21 11:16:16 +02:00

Undo the s/files/file/ change, but add

comments about why the old version was desired.
This commit is contained in:
Jim Meyering
2005-09-26 07:20:22 +00:00
parent 31b44eef6e
commit c5e9d78786

View File

@@ -77,8 +77,10 @@ for case in $cases; do
touch -- $files || framework_failure=1
chmod $args || fail=1
for file in $files; do
rm -f -- $file && touch -- $file && rm -- $file || framework_failure=1
chmod $args $file 2>/dev/null && fail=1
# Test for misparsing args by creating all $files but $file.
# chmod has a bug if it succeeds even though $file is absent.
rm -f -- $files && touch -- $files && rm -- $file || framework_failure=1
chmod $args 2>/dev/null && fail=1
done
;;
esac