diff options
author | Jim Meyering <jim@meyering.net> | 1998-02-21 11:33:09 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1998-02-21 11:33:09 +0000 |
commit | afa328c54e085dd8b17325d8497248520f3670bd (patch) | |
tree | fb98c8e83ddedcfe4575a742d3b67f024d8ca685 /tests/mv/mv-special-1 | |
parent | c66e967d702eaebbc81a628251752517c291581e (diff) | |
download | coreutils-afa328c54e085dd8b17325d8497248520f3670bd.tar.xz |
.
Diffstat (limited to 'tests/mv/mv-special-1')
-rwxr-xr-x | tests/mv/mv-special-1 | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/mv/mv-special-1 b/tests/mv/mv-special-1 new file mode 100755 index 000000000..0cc9f1f7b --- /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 |