diff options
Diffstat (limited to 'test/framework.py')
-rw-r--r-- | test/framework.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/framework.py b/test/framework.py index 572207db3f8..7d03eebef9a 100644 --- a/test/framework.py +++ b/test/framework.py @@ -1275,6 +1275,18 @@ class VppTestCase(CPUInterface, unittest.TestCase): self.logger.debug(self.vapi.cli("show trace")) return rx + def send_and_expect_load_balancing(self, input, pkts, outputs, + worker=None, trace=True): + self.pg_send(input, pkts, worker=worker, trace=trace) + rxs = [] + for oo in outputs: + rx = oo._get_capture(1) + self.assertNotEqual(0, len(rx)) + rxs.append(rx) + if trace: + self.logger.debug(self.vapi.cli("show trace")) + return rxs + def send_and_expect_only(self, intf, pkts, output, timeout=None): self.pg_send(intf, pkts) rx = output.get_capture(len(pkts)) |