]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[1818] Don't check for auth when starting bind10 in lettuce tests
authorMukund Sivaraman <muks@isc.org>
Wed, 4 Apr 2012 07:25:57 +0000 (12:55 +0530)
committerMukund Sivaraman <muks@isc.org>
Sun, 15 Apr 2012 09:33:56 +0000 (15:03 +0530)
tests/lettuce/features/terrain/bind10_control.py

index b2a367cf23fb41d6af0a674b08facf4456f3d70c..71124400148897f698def904fdd882912c355718 100644 (file)
@@ -100,18 +100,15 @@ def wait_for_xfrout(step, process_name):
 def have_bind10_running(step, config_file, cmdctl_port, process_name):
     """
     Compound convenience step for running bind10, which consists of
-    start_bind10 and wait_for_auth.
+    start_bind10.
     Currently only supports the 'with configuration' option.
     """
     start_step = 'start bind10 with configuration ' + config_file
-    wait_step = 'wait for bind10 auth to start'
     if cmdctl_port is not None:
         start_step += ' with cmdctl port ' + str(cmdctl_port)
     if process_name is not None:
         start_step += ' as ' + process_name
-        wait_step = 'wait for bind10 auth of ' + process_name + ' to start'
     step.given(start_step)
-    step.given(wait_step)
 
 # function to send lines to bindctl, and store the result
 def run_bindctl(commands, cmdctl_port=None):