aboutsummaryrefslogtreecommitdiffstats
path: root/tests/cp/no-deref-link3
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-06-22 03:49:51 +0000
committerJim Meyering <jim@meyering.net>1997-06-22 03:49:51 +0000
commite8b0678fede1780b63c8fee962924ee58c80d87b (patch)
treecc077e61e04e1d05bfbea82ec26be2f371fe5872 /tests/cp/no-deref-link3
parent*** empty log message *** (diff)
downloadcoreutils-e8b0678fede1780b63c8fee962924ee58c80d87b.tar.gz
coreutils-e8b0678fede1780b63c8fee962924ee58c80d87b.zip
.
Diffstat (limited to 'tests/cp/no-deref-link3')
-rwxr-xr-xtests/cp/no-deref-link319
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/cp/no-deref-link3 b/tests/cp/no-deref-link3
new file mode 100755
index 000000000..ca3aa4840
--- /dev/null
+++ b/tests/cp/no-deref-link3
@@ -0,0 +1,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