2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

pulldown:

If the testsock.pl test fails, try 5 times (2 seconds between tries) in case
a server took some time to fully free the port.  (Appears to be an occasional
problem on Solaris)
This commit is contained in:
Michael Sawyer
2000-07-10 22:49:46 +00:00
parent a4db2a47f5
commit 796b1656b6

View File

@@ -15,7 +15,7 @@
# ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
# SOFTWARE.
# $Id: start.sh,v 1.24 2000/07/07 18:25:08 bwelling Exp $
# $Id: start.sh,v 1.25 2000/07/10 22:49:46 mws Exp $
#
# Start name servers for running system tests.
@@ -28,16 +28,26 @@ test $# -gt 0 || { echo "usage: $0 test-directory" >&2; exit 1; }
test -d "$1" || { echo No test directory: "$1"; exit 1; }
if $PERL ./testsock.pl -p 5300
then
:
else
echo "$0: could not bind to server addresses, server still running?"
echo "I:server sockets not available"
echo "R:FAIL"
sh ./stop.sh $1
exit 1
fi
portup=0
testloop=0
while [ $portup == 0 ]
do
if $PERL ./testsock.pl -p 5300
then
portup=1
else
echo "I:Couldn't bind to socket (yet)"
sleep 2
testloop=`expr $testloop + 1`
if [ $testloop == 5 ]; then
echo "$0: could not bind to server addresses, still running?"
echo "I:server sockets not available"
echo "R:FAIL"
sh ./stop.sh $1
exit 1
fi
fi
done
cd $1