summaryrefslogtreecommitdiff
path: root/tests/cp/no-deref-link3
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cp/no-deref-link3')
-rwxr-xr-xtests/cp/no-deref-link36
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/cp/no-deref-link3 b/tests/cp/no-deref-link3
index 148694860..41910e1a3 100755
--- a/tests/cp/no-deref-link3
+++ b/tests/cp/no-deref-link3
@@ -2,11 +2,9 @@
# FIXME: This test requires ln -s.
# cp from 3.16 fails this test
-: ${CP=cp}
-
if test "$VERBOSE" = yes; then
set -x
- $CP --version
+ cp --version
fi
rm -rf a b
@@ -18,7 +16,7 @@ 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
+cp -d a b 2>/dev/null
# Fail this test if the exit status is not 1
test $? = 1 || fail=1