1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 10:51:48 +02:00
Files
coreutils/tests/cp/no-deref-link3
Jim Meyering 8dfdbd327c .
1997-07-09 18:11:59 +00:00

31 lines
439 B
Bash
Executable File

#!/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
msg=bar
echo $msg > a
ln -s a b
fail=0
# It should fail with a message something like this:
# cp: `a' and `b' 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 -f a b
exit $fail