diff options
author | Jim Meyering <jim@meyering.net> | 2000-08-20 21:03:48 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-08-20 21:03:48 +0000 |
commit | 59bf576f46c244e629d7f58dbedab24acf007a65 (patch) | |
tree | 443789db51d4dda01b99372ebe8de13a53f2ca1b /tests | |
parent | 1d0ba167029f7e51621d57cce35e14f6379657e0 (diff) | |
download | coreutils-59bf576f46c244e629d7f58dbedab24acf007a65.tar.xz |
*** empty log message ***
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/cp/cp-HL | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/tests/cp/cp-HL b/tests/cp/cp-HL new file mode 100755 index 000000000..c2b0cf7b4 --- /dev/null +++ b/tests/cp/cp-HL @@ -0,0 +1,44 @@ +#!/bin/sh +# test cp's new, -H and -L options + +if test "$VERBOSE" = yes; then + set -x + cp --version +fi + +. $srcdir/../envvar-check + +pwd=`pwd` +tmp=cp-HL.$$ +trap 'status=$?; cd $pwd; rm -rf $tmp && exit $status' 0 +trap 'exit $?' 1 2 13 15 + +framework_failure=0 +mkdir $tmp || framework_failure=1 +cd $tmp || framework_failure=1 + +mkdir src-dir dest-dir || framework_failure=1 +echo f > f || framework_failure=1 +ln -s f slink || framework_failure=1 +ln -s no-such-file src-dir/slink || framework_failure=1 + +if test $framework_failure = 1; then + echo 'failure in testing framework' + exit 1 +fi + +fail=0 + +cp -H -R slink src-dir dest-dir || fail=1 +test -d src-dir || fail=1 +test -d dest-dir/src-dir || fail=1 + +# Expect this to succeed since this slink is not a symlink +cat dest-dir/slink > /dev/null 2>&1 || fail=1 + +# Expect this to fail since *this* slink is a dangling symlink. +cat dest-dir/src-dir/slink > /dev/null 2>&1 && fail=1 + +# FIXME: test -L, too. + +(exit $fail); exit |