From: Mukund Sivaraman Date: Wed, 4 Apr 2012 07:25:57 +0000 (+0530) Subject: [1818] Don't check for auth when starting bind10 in lettuce tests X-Git-Tag: trac2351_base~226^2~116^2~34^2~28 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=69bcd5348b07321645cbd749dc964d96bf654076;p=thirdparty%2Fkea.git [1818] Don't check for auth when starting bind10 in lettuce tests --- diff --git a/tests/lettuce/features/terrain/bind10_control.py b/tests/lettuce/features/terrain/bind10_control.py index b2a367cf23..7112440014 100644 --- a/tests/lettuce/features/terrain/bind10_control.py +++ b/tests/lettuce/features/terrain/bind10_control.py @@ -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):