X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2FDUTSetup.py;h=d5ebf9a0695b43375680e59be0ffea2ec318345e;hp=e5e56784d5219854cc5cc412f3b1cdb749614041;hb=05eba892c7d2a778e78a950966fb1a6e0d68aa60;hpb=5fbbffd70f3b03b1778d31173065d86bfcc9a975 diff --git a/resources/libraries/python/DUTSetup.py b/resources/libraries/python/DUTSetup.py index e5e56784d5..d5ebf9a069 100644 --- a/resources/libraries/python/DUTSetup.py +++ b/resources/libraries/python/DUTSetup.py @@ -10,15 +10,14 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + from robot.api import logger from topology import NodeType from ssh import SSH from constants import Constants -class DUTSetup(object): - def __init__(self): - pass +class DUTSetup(object): def start_vpp_service_on_all_duts(self, nodes): """Start up the VPP service on all nodes.""" @@ -48,6 +47,7 @@ class DUTSetup(object): ssh.exec_command('sudo -Sn bash {0}/{1}/dut_setup.sh'.format( Constants.REMOTE_FW_DIR, Constants.RESOURCES_LIB_SH)) logger.trace(stdout) + logger.trace(stderr) if 0 != int(ret_code): logger.debug('DUT {0} setup script failed: "{1}"'. format(node['host'], stdout + stderr))