From fbc1b0b06f63810b660084a1f66b09b4dd2a09db Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 4 Sep 2000 08:03:56 +0000 Subject: *** empty log message *** --- tests/mv/part-symlink | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'tests/mv/part-symlink') diff --git a/tests/mv/part-symlink b/tests/mv/part-symlink index 098fe7628..8077bdfac 100755 --- a/tests/mv/part-symlink +++ b/tests/mv/part-symlink @@ -90,15 +90,15 @@ for copy in cp mv; do echo $copy_status $copy $options $args # Normalize the program name in the error output, + # remove any site-dependent part of other-partition file name, # and put brackets around the output. - test -s .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. + # Remove any site-dependent part of each file name. ls="`ls -lG --ignore=.err . \ | sed \ -e '/^total /d' \ @@ -116,9 +116,11 @@ for copy in cp mv; do # If the command failed, then it must not have changed the files. if test $copy_status != 0; then for f in $actual_args; do + test -f $f || + { echo "$copy FAILED but removed $f"; continue; } case "`cat $f`" in "$contents") ;; - *) echo $copy FAILED;; + *) echo "$copy FAILED but modified $f";; esac done fi -- cgit v1.2.3-54-g00ecf