build: prepare to enable -Werror also for gnulib-tests/
[coreutils/ericb.git] / tests / mv / i-link-no
blobe206d2ccc78c51d1d61216c527728f39921d3d48
1 #!/bin/sh
2 # Show that mv doesn't preserve links to files the user has declined to move.
4 # Copyright (C) 2002, 2004-2010 Free Software Foundation, Inc.
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 if test "$VERBOSE" = yes; then
20 set -x
21 mv --version
24 . $srcdir/test-lib.sh
26 mkdir a b || framework_failure
27 echo foo > a/foo || framework_failure
28 ln a/foo a/bar || framework_failure
29 echo FUBAR > b/FUBAR || framework_failure
30 ln b/FUBAR b/bar || framework_failure
31 chmod a-w b/bar || framework_failure
32 echo n > no || framework_failure
35 mv a/bar a/foo b < no > out 2> err || fail=1
36 touch exp
37 touch exp_err
39 compare out exp || fail=1
40 compare err exp_err || fail=1
42 case "`cat b/foo`" in
43 foo) ;;
44 *) fail=1;;
45 esac
47 Exit $fail