mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-04-19 02:10:57 +02:00
`(exit N); exit N'. Otherwise, those many tests could exit with improper exit status when exiting via e.g., a trapped interrupt. Thanks to a report from Bob Proulx.
32 lines
592 B
Bash
Executable File
32 lines
592 B
Bash
Executable File
#!/bin/sh
|
|
# On some operating systems, e.g. SunOS-4.1.1_U1 on sun3x,
|
|
# rename() doesn't accept trailing slashes.
|
|
|
|
if test "$VERBOSE" = yes; then
|
|
set -x
|
|
mv --version
|
|
fi
|
|
|
|
pwd=`pwd`
|
|
tmp=mv-tslash.$$
|
|
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 || framework_failure=1
|
|
|
|
if test $framework_failure = 1; then
|
|
echo 'failure in testing framework'
|
|
exit 1
|
|
fi
|
|
|
|
fail=0
|
|
|
|
mv foo/ bar || fail=1
|
|
|
|
(exit $fail); exit $fail
|