mirror of
https://github.com/coreutils/coreutils.git
synced 2025-01-05 23:53:43 +08:00
42 lines
986 B
Bash
Executable File
42 lines
986 B
Bash
Executable File
#!/bin/sh
|
|
# cp -R --parents dir-specified-with-trailing-slash/ other-dir
|
|
# would get a failed assertion.
|
|
|
|
if test "$VERBOSE" = yes; then
|
|
set -x
|
|
mv --version
|
|
fi
|
|
|
|
pwd=`pwd`
|
|
tmp=cp-parents.$$
|
|
trap 'status=$?; cd $pwd; exec 1>&2; rm -rf $tmp && exit $status' 0
|
|
trap '(exit $?); exit' 1 2 13 15
|
|
|
|
. $srcdir/../envvar-check
|
|
|
|
framework_failure=0
|
|
mkdir $tmp || framework_failure=1
|
|
cd $tmp || framework_failure=1
|
|
mkdir foo bar || framework_failure=1
|
|
mkdir -p a/b/c d || framework_failure=1
|
|
|
|
if test $framework_failure = 1; then
|
|
echo 'failure in testing framework'
|
|
exit 1
|
|
fi
|
|
|
|
fail=0
|
|
|
|
# With 4.0.37 and earlier (back to when?), this would fail
|
|
# with the failed assertion from dirname.c.
|
|
cp -R --parents foo/ bar || fail=1
|
|
|
|
# Exercise the make_path and re_protect code in cp.c.
|
|
# FIXME: compare verbose output with expected output.
|
|
cp --verbose -a --parents a/b/c d > /dev/null 2>&1 || fail=1
|
|
test -d d/a/b/c || fail=1
|
|
|
|
# FIXME: add tests to check that re_protect works
|
|
|
|
(exit $fail); exit
|