aboutsummaryrefslogtreecommitdiffstats
path: root/test/vpp_sub_interface.py
diff options
context:
space:
mode:
authorKlement Sekera <ksekera@cisco.com>2018-06-24 10:30:37 +0200
committerKlement Sekera <ksekera@cisco.com>2018-06-25 13:19:26 +0200
commitbeaded5e0cbcd507fa4dca4f71712bd4e6911e69 (patch)
treeea00ef9503f07387c94384610fa8f24530c8d6a7 /test/vpp_sub_interface.py
parentb9ef2739dd1e681143e78ada1ffc342ae2fb89b0 (diff)
make test: fix broken interfaces #2
Change-Id: I9d5b5d925fd2c09a1113fc51e433a16d729a241b Signed-off-by: Klement Sekera <ksekera@cisco.com>
Diffstat (limited to 'test/vpp_sub_interface.py')
-rw-r--r--test/vpp_sub_interface.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/test/vpp_sub_interface.py b/test/vpp_sub_interface.py
index 3c726b29d3f..255cfffd827 100644
--- a/test/vpp_sub_interface.py
+++ b/test/vpp_sub_interface.py
@@ -1,8 +1,8 @@
from scapy.layers.l2 import Dot1Q
from abc import abstractmethod, ABCMeta
-from vpp_interface import VppInterface
from vpp_pg_interface import VppPGInterface
from vpp_papi_provider import L2_VTR_OP
+from vpp_interface import VppInterface
class VppSubInterface(VppPGInterface):
@@ -50,6 +50,12 @@ class VppSubInterface(VppPGInterface):
def create_ndp_req(self):
pass
+ def resolve_arp(self):
+ super(VppSubInterface, self).resolve_arp(self.parent)
+
+ def resolve_ndp(self):
+ super(VppSubInterface, self).resolve_ndp(self.parent)
+
@abstractmethod
def add_dot1_layer(self, pkt):
pass