From: Aki Tuomi Date: Thu, 27 Jun 2013 17:29:56 +0000 (+0300) Subject: Make sure webrick startup won't kill script X-Git-Tag: rec-3.6.0-rc1~616^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F884%2Fhead;p=thirdparty%2Fpdns.git Make sure webrick startup won't kill script --- diff --git a/regression-tests/start-test-stop b/regression-tests/start-test-stop index a7f1735e46..60e772c0e2 100755 --- a/regression-tests/start-test-stop +++ b/regression-tests/start-test-stop @@ -510,6 +510,7 @@ __EOF__ rm -f remotebackend-access.log $testsdir/http-backend.rb & echo $! > pdns-remotebackend.pid + set +e # make sure it runs before continuing loopcount=0 while [ $loopcount -lt 20 ]; do @@ -518,6 +519,7 @@ __EOF__ sleep 1 let loopcount=loopcount+1 done + set -e ;; unix) connstr="unix:path=/tmp/remote.socket"