From: Jim Meyering Date: Sat, 21 Feb 1998 11:33:09 +0000 (+0000) Subject: . X-Git-Tag: FILEUTILS-3_16m~21 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=afa328c54e085dd8b17325d8497248520f3670bd;p=thirdparty%2Fcoreutils.git . --- diff --git a/tests/mv/mknod-1 b/tests/mv/mknod-1 deleted file mode 100755 index 1af1f5c782..0000000000 --- a/tests/mv/mknod-1 +++ /dev/null @@ -1,9 +0,0 @@ -#! /bin/sh - -: ${MV=mv} - -. $srcdir/setup - -if test -z $other_partition_tmpdir; then - exit 77 -fi diff --git a/tests/mv/mv-special-1 b/tests/mv/mv-special-1 new file mode 100755 index 0000000000..0cc9f1f7bc --- /dev/null +++ b/tests/mv/mv-special-1 @@ -0,0 +1,18 @@ +#! /bin/sh + +: ${MV=mv} +: ${RM=rm} +: ${MKNOD=mknod} + +. $srcdir/setup + +if test -z $other_partition_tmpdir; then + exit 77 +fi + +null=.mv-null +$RM -f $null +$MKNOD $null p +$MV $null $other_partition_tmpdir + +$RM -rf $null $other_partition_tmpdir