From: Jim Meyering Date: Mon, 4 Sep 2000 07:25:10 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: FILEUTILS-4_0z~55 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e2017655a101934a9443454f23799ece8e57058f;p=thirdparty%2Fcoreutils.git *** empty log message *** --- diff --git a/tests/mv/part-symlink b/tests/mv/part-symlink index 49fe6c60a3..a21fa8125a 100755 --- a/tests/mv/part-symlink +++ b/tests/mv/part-symlink @@ -13,6 +13,8 @@ tmp=part-sl.$$ trap 'status=$?; cd $pwd; rm -rf $tmp $other_partition_tmpdir && exit $status' 0 trap '(exit $?); exit' 1 2 13 15 +pwd_tmp=$pwd/$tmp + . $srcdir/setup . $srcdir/../envvar-check @@ -64,6 +66,7 @@ for copy in cp mv; do 'rem_reg loc_sl' \ ; do for options in '' --rem; do + test "$options" = --rem && test $copy = mv && continue rm -rf dir || fail=1 rm -f $other_partition_tmpdir/rem_reg || fail=1 rm -f $other_partition_tmpdir/rem_sl || fail=1 @@ -89,15 +92,24 @@ for copy in cp mv; do # Normalize the program name in the error output, # and put brackets around the output. test -s .err && - echo "[`sed 's/^[^:][^:]*\(..\):/\1:/;s,$other_partition_tmpdir/,,' .err`]" + cp --backup .err /tmp + test -s .err && { + echo '[' | tr -d '\012' + sed 's/^[^:][^:]*\(..\):/\1:/;s,'$other_partition_tmpdir/,, .err + echo ']' | tr -d '\012' + } # Strip off all but the file names. ls="`ls -lG --ignore=.err . \ | sed \ -e '/^total /d' \ + -e s,$other_partition_tmpdir/,, \ + -e s,$pwd_tmp/,, \ -e 's/^...............................................//'`" ls2="`cd $other_partition_tmpdir && ls -lG --ignore=.err . \ | sed \ -e '/^total /d' \ + -e s,$other_partition_tmpdir/,, \ + -e s,$pwd_tmp/,, \ -e 's/^...............................................//'`" echo "($ls) ($ls2)"