summaryrefslogtreecommitdiff
path: root/runtests.sh
diff options
context:
space:
mode:
authorMartin Pool <mbp@samba.org>2001-08-29 09:23:19 +0000
committerMartin Pool <mbp@samba.org>2001-08-29 09:23:19 +0000
commit5cb1f5c7950771429df39ee829b4744749132930 (patch)
tree03cccbd4267d2f2d23ec8ac8a2a523f55ee73c11 /runtests.sh
parent12b9c8409e2bfcd8f5eada3fad3d40cdbd673509 (diff)
downloadrsync-5cb1f5c7950771429df39ee829b4744749132930.tar.gz
rsync-5cb1f5c7950771429df39ee829b4744749132930.tar.bz2
rsync-5cb1f5c7950771429df39ee829b4744749132930.zip
Apparently '!' to invert a pipeline result doesn't work on UnixWare.
Diffstat (limited to 'runtests.sh')
-rwxr-xr-xruntests.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtests.sh b/runtests.sh
index 55c6149c..1d284372 100755
--- a/runtests.sh
+++ b/runtests.sh
@@ -110,13 +110,13 @@ echo "$0 running in `pwd`"
echo " rsync_bin=$rsync_bin"
echo " srcdir=$srcdir"
-if ! test -f $rsync_bin
+if test ! -f $rsync_bin
then
echo "rsync_bin $rsync_bin is not a file" >&2
exit 2
fi
-if ! test -d $srcdir
+if test ! -d $srcdir
then
echo "srcdir $srcdir is not a directory" >&2
exit 2