2 # On some operating systems, e.g. SunOS-4.1.1_U1 on sun3x,
3 # rename() doesn't accept trailing slashes.
4 # Also, ensure that "mv dir non-exist-dir/" works.
5 # Also, ensure that "cp dir non-exist-dir/" works.
7 # Copyright (C) 2004, 2006-2012 Free Software Foundation, Inc.
9 # This program is free software: you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation, either version 3 of the License, or
12 # (at your option) any later version.
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with this program. If not, see <http://www.gnu.org/licenses/>.
22 .
"${srcdir=.}/init.sh"; path_prepend_ ..
/src
25 mkdir foo || framework_failure_
30 # mv and cp would misbehave for coreutils versions [5.3.0..5.97], 6.0 and 6.1
31 for cmd
in mv 'cp -r'; do
32 for opt
in '' -T -u; do
33 rm -rf d e || framework_failure_
34 mkdir d || framework_failure_
36 $cmd $opt d e
/ || fail
=1
37 if test "$cmd" = mv; then
46 # We would like the erroneous-looking "mv any non-dir/" to fail,
47 # but with the current implementation, it depends on how the
48 # underlying rename syscall handles the trailing slash.
49 # It does fail, as desired, on recent Linux and Solaris systems.
53 # Test for a cp-specific diagnostic introduced after coreutils-8.7:
55 "cp: cannot create regular file 'no-such/': Not a directory" \
58 cp b no-such
/ 2> err
&& fail
=1
60 # Map "No such file..." diagnostic to the expected "Not a directory"
61 sed 's/No such file or directory/Not a directory/' err
> k
&& mv k err
63 compare expected-err err || fail
=1