Apparently '!' to invert a pipeline result doesn't work on UnixWare.
authorMartin Pool <mbp@samba.org>
Wed, 29 Aug 2001 09:23:19 +0000 (09:23 +0000)
committerMartin Pool <mbp@samba.org>
Wed, 29 Aug 2001 09:23:19 +0000 (09:23 +0000)
runtests.sh

index 55c6149..1d28437 100755 (executable)
@@ -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