tests: hoist the sourcing of "lang-default"
[platform/upstream/coreutils.git] / tests / mv / into-self-2
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.
5
6 # Copyright (C) 1998-2000, 2006-2008 Free Software Foundation, Inc.
7
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.
12
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.
17
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/>.
20
21 if test "$VERBOSE" = yes; then
22   set -x
23   mv --version
24 fi
25
26 . $top_srcdir/tests/test-lib.sh
27 cleanup_() { rm -rf "$other_partition_tmpdir"; }
28 . "$abs_top_srcdir/tests/other-fs-tmpdir"
29
30 file="$other_partition_tmpdir/file"
31 symlink=symlink
32
33 fail=0
34
35 echo whatever > $file || framework_failure
36 ln -s $file $symlink || framework_failure
37
38 # This mv command should exit nonzero.
39 mv $symlink $file > out 2>&1 && fail=1
40
41 # This should succeed.
42 mv $file $symlink || fail=1
43
44 sed \
45    -e "s,mv:,XXX:," \
46    -e "s,$file,YYY," \
47    -e "s,$symlink,ZZZ," \
48   out > out2
49
50 cat > exp <<\EOF
51 XXX: `ZZZ' and `YYY' are the same file
52 EOF
53 #'
54
55 compare out2 exp || fail=1
56
57 (exit $fail); exit $fail