From: Jim Meyering Date: Sat, 21 Feb 1998 16:14:05 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: FILEUTILS-3_16m~12 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=a03a97d7d890b31b71cdc0551d5ee4e66b89ed7d;p=thirdparty%2Fcoreutils.git *** empty log message *** --- diff --git a/tests/mv/mv-special-1 b/tests/mv/mv-special-1 index 410034d80a..9beaf06599 100755 --- a/tests/mv/mv-special-1 +++ b/tests/mv/mv-special-1 @@ -1,9 +1,10 @@ #! /bin/sh +: ${LS=ls} : ${MV=mv} -: ${RM=rm} -: ${MKNOD=mknod} : ${MKDIR=mkdir} +: ${MKNOD=mknod} +: ${RM=rm} : ${TOUCH=touch} . $srcdir/setup @@ -29,6 +30,12 @@ fi fail=0 $MV $null $dir $other_partition_tmpdir || fail=1 +# Make sure the files are gone. +test -f $null && fail=1 +test -d $dir && fail=1 + +# cd $other_partition_tmpdir +# $LS -l -A -R $other_partition_tmpdir $RM -rf $null $dir $other_partition_tmpdir