rm: update gnulib to get an fts fix for Cygwin+NWFS/NcFsd file systems
[coreutils/ericb.git] / tests / mv / into-self-2
blob28e21276833bae957355cbf5ed32d8ebb53afde1
1 #!/bin/sh
2 # Force mv to use the copying code.
3 # Consider the case where SRC and DEST are on different
4 # partitions and DEST is a symlink to SRC.
6 # Copyright (C) 1998-2000, 2006-2011 Free Software Foundation, Inc.
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 . "${srcdir=.}/init.sh"; path_prepend_ ../src
22 print_ver_ mv
23 cleanup_() { rm -rf "$other_partition_tmpdir"; }
24 . "$abs_srcdir/other-fs-tmpdir"
26 file="$other_partition_tmpdir/file"
27 symlink=symlink
30 echo whatever > $file || framework_failure_
31 ln -s $file $symlink || framework_failure_
33 # This mv command should exit nonzero.
34 mv $symlink $file > out 2>&1 && fail=1
36 # This should succeed.
37 mv $file $symlink || fail=1
39 sed \
40 -e "s,mv:,XXX:," \
41 -e "s,$file,YYY," \
42 -e "s,$symlink,ZZZ," \
43 out > out2
45 cat > exp <<\EOF
46 XXX: `ZZZ' and `YYY' are the same file
47 EOF
50 compare out2 exp || fail=1
52 Exit $fail