From 7b0d5e567b149abab87fb5dc78c21696c764e0e8 Mon Sep 17 00:00:00 2001 From: Aki Tuomi Date: Thu, 27 Jun 2013 20:29:56 +0300 Subject: [PATCH] Make sure webrick startup won't kill script --- regression-tests/start-test-stop | 2 ++ 1 file changed, 2 insertions(+) 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" -- 2.47.2