diff options
author | Neale Ranns <nranns@cisco.com> | 2019-12-23 04:10:25 +0000 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2019-12-23 21:39:23 +0000 |
commit | 4a56f4e48f39f9e0560833115f85270c0c04b57f (patch) | |
tree | da9d30b72cf953008bd3e15140219ba1240b5ba4 /test/framework.py | |
parent | 1de7167e7a12a80cc5996959aeb1fbe4b2853ccb (diff) |
ipsec: Test and fix IPSec worker hand-off
Type: fix
Change-Id: I5cb9a3845ddbc5f4de4eb4e9c481f606fe5cec9a
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'test/framework.py')
-rw-r--r-- | test/framework.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/framework.py b/test/framework.py index 7ff7978a055..7d1955f5c7a 100644 --- a/test/framework.py +++ b/test/framework.py @@ -1133,9 +1133,9 @@ class VppTestCase(unittest.TestCase): "Finished sleep (%s) - slept %es (wanted %es)", remark, after - before, timeout) - def pg_send(self, intf, pkts): + def pg_send(self, intf, pkts, worker=None): self.vapi.cli("clear trace") - intf.add_stream(pkts) + intf.add_stream(pkts, worker=worker) self.pg_enable_capture(self.pg_interfaces) self.pg_start() @@ -1148,10 +1148,10 @@ class VppTestCase(unittest.TestCase): i.assert_nothing_captured(remark=remark) timeout = 0.1 - def send_and_expect(self, intf, pkts, output, n_rx=None): + def send_and_expect(self, intf, pkts, output, n_rx=None, worker=None): if not n_rx: n_rx = len(pkts) - self.pg_send(intf, pkts) + self.pg_send(intf, pkts, worker=worker) rx = output.get_capture(n_rx) return rx |