From 973f13ccb2d135c86860889272728657e5407c64 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 22 Jun 1997 04:01:43 +0000 Subject: . --- tests/cp/no-deref-link3 | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'tests/cp/no-deref-link3') diff --git a/tests/cp/no-deref-link3 b/tests/cp/no-deref-link3 index 896d64d8a..4d3611aee 100755 --- a/tests/cp/no-deref-link3 +++ b/tests/cp/no-deref-link3 @@ -7,13 +7,17 @@ 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 || exit 1 +test $? = 1 || fail=1 + +test "`cat a`" = $msg || fail=1 -test "`cat a`" = bar || exit 1 +rm -f a b -exit 0 +exit $fail -- cgit v1.2.3-54-g00ecf