blob: ca3aa4840815cb87e1a93a4419e1828149ad07b0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
# FIXME: This test requires ln -s.
# cp from 3.16 fails this test
rm -f a b
msg=bar
echo $msg > a
ln -s a b
# 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 || exit 1
test "`cat a`" = bar || exit 1
exit 0
|