summaryrefslogtreecommitdiffstats
path: root/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_port.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_port.py')
-rw-r--r--scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_port.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_port.py b/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_port.py
index 43fc29e6..391b2076 100644
--- a/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_port.py
+++ b/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_port.py
@@ -476,6 +476,9 @@ class Port(object):
@owned
def pause (self):
+ if (self.state == self.STATE_PCAP_TX) :
+ return self.err("pause is not supported during PCAP TX")
+
if (self.state != self.STATE_TX) :
return self.err("port is not transmitting")
@@ -512,6 +515,9 @@ class Port(object):
@owned
def update (self, mul, force):
+ if (self.state == self.STATE_PCAP_TX) :
+ return self.err("update is not supported during PCAP TX")
+
if (self.state != self.STATE_TX) :
return self.err("port is not transmitting")
@@ -561,14 +567,15 @@ class Port(object):
return self.ok()
@writeable
- def push_remote (self, pcap_filename, ipg_usec, speedup, count):
+ def push_remote (self, pcap_filename, ipg_usec, speedup, count, duration):
params = {"handler": self.handler,
"port_id": self.port_id,
"pcap_filename": pcap_filename,
"ipg_usec": ipg_usec if ipg_usec is not None else -1,
"speedup": speedup,
- "count": count}
+ "count": count,
+ "duration": duration}
rc = self.transmit("push_remote", params)
if rc.bad():