*** empty log message ***
[coreutils.git] / tests / cp / no-deref-link1
blob3a85c4994ed7dc175241e2e1f2bce456756999a2
1 #!/bin/sh
2 # FIXME: This test requires ln -s.
3 # cp from 3.16 fails this test
5 if test "$VERBOSE" = yes; then
6 set -x
7 cp --version
8 fi
10 rm -rf a b
11 mkdir a b
12 msg=bar
13 echo $msg > a/foo
14 cd b
15 ln -s ../a/foo .
16 cd ..
18 fail=0
20 # It should fail with a message something like this:
21 # ./cp: `a/foo' and `b/foo' are the same file
22 cp -d a/foo b 2>/dev/null
24 # Fail this test if the exit status is not 1
25 test $? = 1 || fail=1
27 test "`cat a/foo`" = $msg || fail=1
29 rm -rf a b
31 exit $fail