X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Ftest_gre.py;h=2559381b1f457973cd7a49d9d445756bba36dfc7;hb=62bab658e7ca782c8d35dacacfa5906ddbcaf437;hp=7032940cfdb914160ad49681d874c1493d3e635c;hpb=33ce60d6759bbbfebb7d489aa591b696e140d870;p=vpp.git diff --git a/test/test_gre.py b/test/test_gre.py index 7032940cfdb..2559381b1f4 100644 --- a/test/test_gre.py +++ b/test/test_gre.py @@ -18,6 +18,12 @@ from scapy.volatile import RandMAC, RandIP from util import ppp, ppc +class GreTunnelTypes: + TT_L3 = 0 + TT_TEB = 1 + TT_ERSPAN = 2 + + class TestGRE(VppTestCase): """ GRE Test Case """ @@ -720,10 +726,10 @@ class TestGRE(VppTestCase): # gre_if1 = VppGreInterface(self, self.pg0.local_ip4, "2.2.2.2", - is_teb=1) + type=GreTunnelTypes.TT_TEB) gre_if2 = VppGreInterface(self, self.pg0.local_ip4, "2.2.2.3", - is_teb=1) + type=GreTunnelTypes.TT_TEB) gre_if1.add_vpp_config() gre_if2.add_vpp_config()