test framework. Remove unused code.
Change-Id: I1bd14d5aff4918b58aef18fa0a9264e033989f6e Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
This commit is contained in:
Paul Vinciguerra
committed by
Neale Ranns
parent
5f4eb24287
commit
8aeb2207f9
@ -977,12 +977,7 @@ class VppTestCase(unittest.TestCase):
|
|||||||
input.add_stream(pkts)
|
input.add_stream(pkts)
|
||||||
self.pg_enable_capture(self.pg_interfaces)
|
self.pg_enable_capture(self.pg_interfaces)
|
||||||
self.pg_start()
|
self.pg_start()
|
||||||
if isinstance(object, (list,)):
|
rx = output.get_capture(len(pkts))
|
||||||
rx = []
|
|
||||||
for o in output:
|
|
||||||
rx.append(output.get_capture(len(pkts)))
|
|
||||||
else:
|
|
||||||
rx = output.get_capture(len(pkts))
|
|
||||||
return rx
|
return rx
|
||||||
|
|
||||||
def send_and_expect_only(self, input, pkts, output, timeout=None):
|
def send_and_expect_only(self, input, pkts, output, timeout=None):
|
||||||
@ -990,14 +985,8 @@ class VppTestCase(unittest.TestCase):
|
|||||||
input.add_stream(pkts)
|
input.add_stream(pkts)
|
||||||
self.pg_enable_capture(self.pg_interfaces)
|
self.pg_enable_capture(self.pg_interfaces)
|
||||||
self.pg_start()
|
self.pg_start()
|
||||||
if isinstance(object, (list,)):
|
rx = output.get_capture(len(pkts))
|
||||||
outputs = output
|
outputs = [output]
|
||||||
rx = []
|
|
||||||
for o in outputs:
|
|
||||||
rx.append(output.get_capture(len(pkts)))
|
|
||||||
else:
|
|
||||||
rx = output.get_capture(len(pkts))
|
|
||||||
outputs = [output]
|
|
||||||
if not timeout:
|
if not timeout:
|
||||||
timeout = 1
|
timeout = 1
|
||||||
for i in self.pg_interfaces:
|
for i in self.pg_interfaces:
|
||||||
|
Reference in New Issue
Block a user