From 09282a24f65c1dfd91ba35a0ac345ade36d8a391 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 27 Nov 1999 10:11:25 +0000 Subject: Don't set/use RM and MV. --- tests/mv/backup-is-src | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'tests') diff --git a/tests/mv/backup-is-src b/tests/mv/backup-is-src index a7bdec7da..90c0bf3b8 100755 --- a/tests/mv/backup-is-src +++ b/tests/mv/backup-is-src @@ -1,12 +1,9 @@ #!/bin/sh # Force mv to use the copying code. -: ${MV=mv} -: ${RM=rm} - if test "$VERBOSE" = yes; then set -x - $MV --version + mv --version fi . $srcdir/setup @@ -19,7 +16,7 @@ a="$other_partition_tmpdir/a" a2="$other_partition_tmpdir/a~" framework_failure=0 -$RM -f $a $a2 || framework_failure=1 +rm -f $a $a2 || framework_failure=1 echo a > $a || framework_failure=1 echo a2 > $a2 || framework_failure=1 @@ -37,10 +34,10 @@ LANG=C export LANG # This mv command should exit nonzero. -$MV --b=simple $a2 $a > out 2>&1 && fail=1 +mv --b=simple $a2 $a > out 2>&1 && fail=1 sed \ - -e "s,$MV:,XXX:," \ + -e "s,mv:,XXX:," \ -e "s,$a,YYY," \ -e "s,$a2,ZZZ," \ out > out2 @@ -51,6 +48,6 @@ EOF cmp out2 exp || fail=1 -$RM -fr out out2 exp $a $a2 $other_partition_tmpdir +rm -fr out out2 exp $a $a2 $other_partition_tmpdir exit $fail -- cgit v1.2.3-70-g09d2