1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-21 11:16:16 +02:00

*** empty log message ***

This commit is contained in:
Jim Meyering
1998-11-30 00:44:59 +00:00
parent 78f7236408
commit bb6a835cc1

48
tests/mv/into-self-3 Executable file
View File

@@ -0,0 +1,48 @@
#!/bin/sh
# move a directory into itself, with a twist
: ${MV=mv}
: ${RM=rm}
if test "$VERBOSE" = yes; then
set -x
$MV --version
fi
dir1=is3-dir1
dir2=is3-dir2
framework_failure=0
$RM -rf $dir1 $dir2 || framework_failure=1
mkdir $dir1 $dir2 || framework_failure=1
if test $framework_failure = 1; then
echo 'failure in testing framework'
exit 1
fi
# Make sure we get English translations.
LANGUAGE=C
export LANGUAGE
LC_ALL=C
export LC_ALL
LANG=C
export LANG
# This mv command should exit nonzero.
$MV $dir1 $dir2 $dir2 > out 2>&1 && fail=1
sed \
-e "s,$MV:,XXX:,g" \
-e "s,$dir2,ZZZ,g" \
out > out2
cat > exp <<\EOF
XXX: cannot move `ZZZ' to a subdirectory of itself, `ZZZ/ZZZ'
EOF
cmp out2 exp || fail=1
$RM -fr out out2 exp $dir1 $dir2
exit $fail