]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
verify server is answering before starting next server
authorMark Andrews <marka@isc.org>
Mon, 6 Feb 2012 23:23:18 +0000 (23:23 +0000)
committerMark Andrews <marka@isc.org>
Mon, 6 Feb 2012 23:23:18 +0000 (23:23 +0000)
bin/tests/system/start.pl

index 5b683f0bc3f7635779e170a8ddfe7841118f4c6a..9710248b7b870e15ed11673f459e8d2fd37634b1 100644 (file)
@@ -15,7 +15,7 @@
 # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 # PERFORMANCE OF THIS SOFTWARE.
 
-# $Id: start.pl,v 1.28 2011/10/13 01:32:32 vjs Exp $
+# $Id: start.pl,v 1.28.118.1 2012/02/06 23:23:18 marka Exp $
 
 # Framework for starting test servers.
 # Based on the type of server specified, check for port availability, remove
@@ -94,9 +94,8 @@ if ($server) {
        &check_ports();
        foreach $name(@ns, @lwresd, @ans) {
                &start_server($name);
-       }
-       foreach $name(@ns) {
-               &verify_server($name);
+               &verify_server($name) if ($name =~ /^ns/);
+               
        }
 }