summaryrefslogtreecommitdiff
path: root/tests/cp/no-deref-link2
blob: 5c194a080973c267009162064522b932f65a4a5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/sh
# FIXME: This test requires ln -s.
# cp from 3.16 fails this test

: ${CP=cp}

if test "$VERBOSE" = yes; then
  set -x
  $CP --version
fi

rm -rf a b
mkdir b
msg=bar
echo $msg > a
cd b
ln -s ../a .
cd ..

fail=0

# It should fail with a message something like this:
#   cp: `a' and `b/foo' are the same file
$CP -d a b 2>/dev/null

# Fail this test if the exit status is not 1
test $? = 1 || fail=1

test "`cat a`" = $msg || fail=1

rm -rf a b

exit $fail