Commit 30fa7724 authored by Wayne Davison's avatar Wayne Davison

A few improvements to the "test" commands to neaten them up and

to try to fix another problem under solaris.
parent ee03617b
...@@ -126,12 +126,10 @@ set -e ...@@ -126,12 +126,10 @@ set -e
RUNSHFLAGS='-e' RUNSHFLAGS='-e'
# for Solaris # for Solaris
PATH="/usr/xpg4/bin/:$PATH" [ -d /usr/xpg4/bin ] && PATH="/usr/xpg4/bin/:$PATH"
if [ -n "$loglevel" ] && [ "$loglevel" -gt 8 ] if [ "x$loglevel" != x ] && [ "$loglevel" -gt 8 ]; then
then if set -x; then
if set -x
then
# If it doesn't work the first time, don't keep trying. # If it doesn't work the first time, don't keep trying.
RUNSHFLAGS="$RUNSHFLAGS -x" RUNSHFLAGS="$RUNSHFLAGS -x"
fi fi
...@@ -142,34 +140,31 @@ echo "$0 running in `pwd`" ...@@ -142,34 +140,31 @@ echo "$0 running in `pwd`"
echo " rsync_bin=$rsync_bin" echo " rsync_bin=$rsync_bin"
echo " srcdir=$srcdir" echo " srcdir=$srcdir"
if test -e /usr/bin/whoami; then if [ -f /usr/bin/whoami ]; then
testuser=`/usr/bin/whoami` testuser=`/usr/bin/whoami`
elif test -e /usr/ucb/whoami; then elif [ -f /usr/ucb/whoami ]; then
testuser=`/usr/ucb/whoami` testuser=`/usr/ucb/whoami`
else else
testuser=`id -un || whoami || echo UNKNOWN` testuser=`id -un || whoami || echo ${LOGNAME:-${USERNAME:-${USER:-'UNKNOWN'}}}`
fi fi
echo " testuser=$testuser" echo " testuser=$testuser"
echo " os=`uname -a`" echo " os=`uname -a`"
# It must be "yes", not just nonnull # It must be "yes", not just nonnull
if test "x$preserve_scratch" = xyes if [ "x$preserve_scratch" = xyes ]; then
then
echo " preserve_scratch=yes" echo " preserve_scratch=yes"
else else
echo " preserve_scratch=no" echo " preserve_scratch=no"
fi fi
if test ! -f $rsync_bin if [ ! -f "$rsync_bin" ]; then
then
echo "rsync_bin $rsync_bin is not a file" >&2 echo "rsync_bin $rsync_bin is not a file" >&2
exit 2 exit 2
fi fi
if test ! -d $srcdir if [ ! -d "$srcdir" ]; then
then
echo "srcdir $srcdir is not a directory" >&2 echo "srcdir $srcdir is not a directory" >&2
exit 2 exit 2
fi fi
...@@ -205,8 +200,7 @@ maybe_discard_scratch() { ...@@ -205,8 +200,7 @@ maybe_discard_scratch() {
return 0 return 0
} }
if [ "x$whichtests" = x ] if [ "x$whichtests" = x ]; then
then
whichtests="*.test" whichtests="*.test"
fi fi
...@@ -257,8 +251,7 @@ do ...@@ -257,8 +251,7 @@ do
*) *)
echo "FAIL $testbase" echo "FAIL $testbase"
failed=`expr $failed + 1` failed=`expr $failed + 1`
if [ "x$nopersist" = "xyes" ] if [ "x$nopersist" = xyes ]; then
then
exit 1 exit 1
fi fi
esac esac
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment