aboutsummaryrefslogtreecommitdiffstats
path: root/runtests.sh
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2005-02-20 17:01:32 +0000
committerWayne Davison <wayned@samba.org>2005-02-20 17:01:32 +0000
commit30fa7724572ae8a5ecbbf22012fa6fe1aea288b4 (patch)
tree60cfc85e695d5b0a8ad47dacf440e9b254690f13 /runtests.sh
parentee03617b3de2ae6488d957b87b87cbe55e205f7c (diff)
downloadandroid_external_rsync-30fa7724572ae8a5ecbbf22012fa6fe1aea288b4.tar.gz
android_external_rsync-30fa7724572ae8a5ecbbf22012fa6fe1aea288b4.tar.bz2
android_external_rsync-30fa7724572ae8a5ecbbf22012fa6fe1aea288b4.zip
A few improvements to the "test" commands to neaten them up and
to try to fix another problem under solaris.
Diffstat (limited to 'runtests.sh')
-rwxr-xr-xruntests.sh29
1 files changed, 11 insertions, 18 deletions
diff --git a/runtests.sh b/runtests.sh
index 7b0654df..85030d0b 100755
--- a/runtests.sh
+++ b/runtests.sh
@@ -126,12 +126,10 @@ set -e
RUNSHFLAGS='-e'
# for Solaris
-PATH="/usr/xpg4/bin/:$PATH"
+[ -d /usr/xpg4/bin ] && PATH="/usr/xpg4/bin/:$PATH"
-if [ -n "$loglevel" ] && [ "$loglevel" -gt 8 ]
-then
- if set -x
- then
+if [ "x$loglevel" != x ] && [ "$loglevel" -gt 8 ]; then
+ if set -x; then
# If it doesn't work the first time, don't keep trying.
RUNSHFLAGS="$RUNSHFLAGS -x"
fi
@@ -142,34 +140,31 @@ echo "$0 running in `pwd`"
echo " rsync_bin=$rsync_bin"
echo " srcdir=$srcdir"
-if test -e /usr/bin/whoami; then
+if [ -f /usr/bin/whoami ]; then
testuser=`/usr/bin/whoami`
-elif test -e /usr/ucb/whoami; then
+elif [ -f /usr/ucb/whoami ]; then
testuser=`/usr/ucb/whoami`
else
- testuser=`id -un || whoami || echo UNKNOWN`
+ testuser=`id -un || whoami || echo ${LOGNAME:-${USERNAME:-${USER:-'UNKNOWN'}}}`
fi
echo " testuser=$testuser"
echo " os=`uname -a`"
# It must be "yes", not just nonnull
-if test "x$preserve_scratch" = xyes
-then
+if [ "x$preserve_scratch" = xyes ]; then
echo " preserve_scratch=yes"
else
echo " preserve_scratch=no"
fi
-if test ! -f $rsync_bin
-then
+if [ ! -f "$rsync_bin" ]; then
echo "rsync_bin $rsync_bin is not a file" >&2
exit 2
fi
-if test ! -d $srcdir
-then
+if [ ! -d "$srcdir" ]; then
echo "srcdir $srcdir is not a directory" >&2
exit 2
fi
@@ -205,8 +200,7 @@ maybe_discard_scratch() {
return 0
}
-if [ "x$whichtests" = x ]
-then
+if [ "x$whichtests" = x ]; then
whichtests="*.test"
fi
@@ -257,8 +251,7 @@ do
*)
echo "FAIL $testbase"
failed=`expr $failed + 1`
- if [ "x$nopersist" = "xyes" ]
- then
+ if [ "x$nopersist" = xyes ]; then
exit 1
fi
esac