From 868380b0204758ef34c6be5bae0c9bdb00c4107f Mon Sep 17 00:00:00 2001 From: pmikus Date: Mon, 17 Oct 2016 08:08:52 +0100 Subject: CSIT-395 Update TRex version to v2.09 - Update TRex to v2.09 Change-Id: I53221aff346840e0438dd1385cedd1db57ca5f3b Signed-off-by: pmikus --- resources/libraries/python/TrafficGenerator.py | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'resources/libraries/python/TrafficGenerator.py') diff --git a/resources/libraries/python/TrafficGenerator.py b/resources/libraries/python/TrafficGenerator.py index 459a6cc2bb..307a28f470 100644 --- a/resources/libraries/python/TrafficGenerator.py +++ b/resources/libraries/python/TrafficGenerator.py @@ -155,7 +155,7 @@ class TrafficGenerator(object): self._node = tg_node if tg_node['subtype'] == NodeSubTypeTG.TREX: - trex_path = "/opt/trex-core-2.07" + trex_path = "/opt/trex-core-2.09" ssh = SSH() ssh.connect(tg_node) @@ -215,18 +215,20 @@ class TrafficGenerator(object): .format(stdout + stderr)) raise RuntimeError('trex config generation error') - (ret, stdout, stderr) = ssh.exec_command( - "sh -c 'cd {0}/scripts/ && sudo ./trex-cfg'".format(trex_path)) - if int(ret) != 0: - logger.error('trex-cfg failed: {0}'.format(stdout + stderr)) - raise RuntimeError('trex-cfg failed') - max_startup_retries = 3 while max_startup_retries > 0: # kill T-rex only if it is already running (ret, _, _) = ssh.exec_command( "sh -c 'pgrep t-rex && sudo pkill t-rex'") + # configure T-rex + (ret, stdout, stderr) = ssh.exec_command( + "sh -c 'cd {0}/scripts/ && sudo ./trex-cfg'"\ + .format(trex_path)) + if int(ret) != 0: + logger.error('trex-cfg failed: {0}'.format(stdout + stderr)) + raise RuntimeError('trex-cfg failed') + # start T-rex (ret, _, _) = ssh.exec_command( "sh -c 'cd {0}/scripts/ && " -- cgit 1.2.3-korg