mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-06-09 03:06:33 +02:00
36 lines
900 B
Bash
Executable File
36 lines
900 B
Bash
Executable File
#!/bin/sh
|
|
# cp -RL dir1 dir2' must handle the case in which each of dir1 and dir2
|
|
# contain a symlink pointing to some third directory.
|
|
|
|
if test "$VERBOSE" = yes; then
|
|
set -x
|
|
cp --version
|
|
fi
|
|
|
|
pwd=`pwd`
|
|
t0=`echo "$0"|sed 's,.*/,,'`.tmp; tmp=$t0/$$
|
|
trap 'status=$?; cd $pwd; chmod -R u+rwx $t0; rm -rf $t0 && exit $status' 0
|
|
trap '(exit $?); exit $?' 1 2 13 15
|
|
|
|
framework_failure=0
|
|
mkdir -p $tmp || framework_failure=1
|
|
cd $tmp || framework_failure=1
|
|
mkdir a b c d || framework_failure=1
|
|
ln -s ../c a || framework_failure=1
|
|
ln -s ../c b || framework_failure=1
|
|
|
|
if test $framework_failure = 1; then
|
|
echo "$0: failure in testing framework" 1>&2
|
|
(exit 1); exit 1
|
|
fi
|
|
|
|
fail=0
|
|
|
|
# Before coreutils-5.94, the following would fail with this message:
|
|
# cp: will not create hard link `d/b/c' to directory `d/a/c'
|
|
cp -RL a b d || fail=1
|
|
test -d a/c || fail=1
|
|
test -d b/c || fail=1
|
|
|
|
(exit $fail); exit $fail
|