.
[platform/upstream/coreutils.git] / tests / cp / no-deref-link1
index 96f2452..5cf4ee3 100755 (executable)
@@ -10,13 +10,17 @@ cd b
 ln -s ../a/foo .
 cd ..
 
+fail=0
+
 # It should fail with a message something like this:
 #   ./cp: `a/foo' and `b/foo' are the same file
 ./cp -d a/foo 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/foo`" = $msg || fail=1
 
-test "`cat a/foo`" = bar || exit 1
+rm -rf a b
 
-exit 0
+exit $fail