From: Jim Meyering Date: Sun, 31 Dec 2000 09:15:44 +0000 (+0000) Subject: New file. Test for the bug fixed by my 2000-12-28 change to copy.c. X-Git-Tag: FILEUTILS-4_0_36~134 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=dd9804a4feddd91896a1168b7ba4ea0707159fc7;p=thirdparty%2Fcoreutils.git New file. Test for the bug fixed by my 2000-12-28 change to copy.c. --- diff --git a/tests/cp/deref-slink b/tests/cp/deref-slink new file mode 100755 index 0000000000..8874e64ca0 --- /dev/null +++ b/tests/cp/deref-slink @@ -0,0 +1,32 @@ +#!/bin/sh +# Demonstrate bug when using -d with an existing destination file +# that is a symlink. + +if test "$VERBOSE" = yes; then + set -x + cp --version +fi + +. $srcdir/../envvar-check +. $srcdir/../lang-default + +pwd=`pwd` +tmp=FIXME.$$ +trap 'status=$?; cd $pwd; rm -rf $tmp && exit $status' 0 +trap '(exit $?); exit' 1 2 13 15 + +framework_failure=0 +mkdir $tmp || framework_failure=1 +cd $tmp || framework_failure=1 +touch f slink-target || framework_failure=1 +ln -s slink-target slink || framework_failure=1 + +if test $framework_failure = 1; then + echo 'failure in testing framework' 1>&2 + (exit 1); exit +fi + +fail=0 +cp -d f slink || fail=1 + +(exit $fail); exit