mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-04-20 18:56:39 +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.
84 lines
2.2 KiB
Bash
Executable File
84 lines
2.2 KiB
Bash
Executable File
#! /bin/sh
|
|
|
|
if test "$VERBOSE" = yes; then
|
|
set -x
|
|
mv --version
|
|
fi
|
|
|
|
pwd=`pwd`
|
|
tmp=mv-spec.$$
|
|
trap 'status=$?; cd $pwd; exec 1>&2; rm -rf $tmp $other_partition_tmpdir && exit $status' 0
|
|
trap '(exit $?); exit' 1 2 13 15
|
|
|
|
. $srcdir/setup
|
|
. $srcdir/../envvar-check
|
|
# Make sure we get English translations.
|
|
. $srcdir/../lang-default
|
|
|
|
if test -z "$other_partition_tmpdir"; then
|
|
(exit 77); exit 77
|
|
fi
|
|
|
|
null=mv-null
|
|
dir=mv-dir
|
|
|
|
framework_failure=0
|
|
mkdir $tmp || framework_failure=1
|
|
cd $tmp || framework_failure=1
|
|
rm -f $null || framework_failure=1
|
|
mknod $null p || framework_failure=1
|
|
mkdir -p $dir/a/b/c $dir/d/e/f || framework_failure=1
|
|
touch $dir/a/b/c/file1 $dir/d/e/f/file2 || framework_failure=1
|
|
|
|
if test $framework_failure = 1; then
|
|
echo '********************************************'
|
|
echo 'NOTICE: unable to create test prerequisites'
|
|
echo '********************************************'
|
|
# exit 77 here to indicate that we couldn't run the test.
|
|
# At least running on SunOS 4.1.4, using a directory NFS mounted
|
|
# from an OpenBSD system, the above mknod fails.
|
|
(exit 77); exit 77
|
|
fi
|
|
|
|
fail=0
|
|
mv --verbose $null $dir $other_partition_tmpdir > out || fail=1
|
|
# Make sure the files are gone.
|
|
test -f $null && fail=1
|
|
test -d $dir && fail=1
|
|
# Make sure they were moved.
|
|
# Since `test -e' is not portable, use `ls'.
|
|
ls $other_partition_tmpdir/$null > /dev/null || fail=1
|
|
test -d $other_partition_tmpdir/$dir/a/b/c || fail=1
|
|
|
|
sed "s,$other_partition_tmpdir,XXX," out | sort > out2
|
|
|
|
cat <<EOF | sort > exp
|
|
\`$null' -> \`XXX/$null'
|
|
removed \`$null'
|
|
\`$dir' -> \`XXX/$dir'
|
|
\`$dir/a' -> \`XXX/$dir/a'
|
|
\`$dir/a/b' -> \`XXX/$dir/a/b'
|
|
\`$dir/a/b/c' -> \`XXX/$dir/a/b/c'
|
|
\`$dir/a/b/c/file1' -> \`XXX/$dir/a/b/c/file1'
|
|
\`$dir/d' -> \`XXX/$dir/d'
|
|
\`$dir/d/e' -> \`XXX/$dir/d/e'
|
|
\`$dir/d/e/f' -> \`XXX/$dir/d/e/f'
|
|
\`$dir/d/e/f/file2' -> \`XXX/$dir/d/e/f/file2'
|
|
removed directory: \`$dir'
|
|
removed \`$dir/a/b/c/file1'
|
|
removed \`$dir/d/e/f/file2'
|
|
removed directory: \`$dir/a'
|
|
removed directory: \`$dir/a/b'
|
|
removed directory: \`$dir/a/b/c'
|
|
removed directory: \`$dir/d'
|
|
removed directory: \`$dir/d/e'
|
|
removed directory: \`$dir/d/e/f'
|
|
EOF
|
|
|
|
cmp out2 exp || fail=1
|
|
|
|
# cd $other_partition_tmpdir
|
|
# ls -l -A -R $other_partition_tmpdir
|
|
|
|
(exit $fail); exit $fail
|