summaryrefslogtreecommitdiffstats
path: root/scripts/automation/trex_control_plane/console/trex_console.py
diff options
context:
space:
mode:
authorHanoh Haim <hhaim@cisco.com>2015-11-22 13:03:34 +0200
committerHanoh Haim <hhaim@cisco.com>2015-11-22 13:03:34 +0200
commitb08b2c0990d29141a1c6eecc6a8fed405cf8b979 (patch)
treeac54796d466126108aa5046b7ab62d38ba2866bd /scripts/automation/trex_control_plane/console/trex_console.py
parent3408c03067a85789b2128352fdc2343ab707ae32 (diff)
parent903b855393acd411e85b25e6b2df1158d9fe2856 (diff)
Merge from master
Diffstat (limited to 'scripts/automation/trex_control_plane/console/trex_console.py')
-rwxr-xr-xscripts/automation/trex_control_plane/console/trex_console.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/automation/trex_control_plane/console/trex_console.py b/scripts/automation/trex_control_plane/console/trex_console.py
index ea2f5f12..995965fd 100755
--- a/scripts/automation/trex_control_plane/console/trex_console.py
+++ b/scripts/automation/trex_control_plane/console/trex_console.py
@@ -197,8 +197,6 @@ class TRexConsole(TRexGeneralCmd):
if rc.bad():
return
- def do_test (self, line):
- print self.stateless_client.get_acquired_ports()
# set verbose on / off
def do_verbose(self, line):
@@ -252,7 +250,7 @@ class TRexConsole(TRexGeneralCmd):
return TRexConsole.tree_autocomplete(s[l - 1])
def do_start(self, line):
- '''Start selected traffic in specified ports on TRex\n'''
+ '''Start selected traffic in specified port(s) on TRex\n'''
self.stateless_client.cmd_start_line(line)
@@ -262,6 +260,7 @@ class TRexConsole(TRexGeneralCmd):
############# stop
def do_stop(self, line):
+ '''stops port(s) transmitting traffic\n'''
self.stateless_client.cmd_stop_line(line)