diff options
author | Neale Ranns <neale.ranns@cisco.com> | 2018-09-26 05:07:25 -0700 |
---|---|---|
committer | John Lo <loj@cisco.com> | 2018-09-26 16:54:46 +0000 |
commit | f5fa5ae2b021f946fbb8ec56e692459cd34bc7fb (patch) | |
tree | c5ba2b4602d39d8a7b366706b5535c1c6ac01f81 /test/test_mpls.py | |
parent | 2ac7edeeaf01dc21d9b87e764b6147c035a87c58 (diff) |
MPLS tunnel dump: use sw_if_index not tunnel_index
Change-Id: I6c0d5aec6ee96a0d40358f0e09a0901b22265063
Signed-off-by: Neale Ranns <neale.ranns@cisco.com>
Diffstat (limited to 'test/test_mpls.py')
-rw-r--r-- | test/test_mpls.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/test_mpls.py b/test/test_mpls.py index 1a4dad18e30..2595b039760 100644 --- a/test/test_mpls.py +++ b/test/test_mpls.py @@ -950,6 +950,19 @@ class TestMPLS(VppTestCase): VppMplsLabel(46, ttl=47), VppMplsLabel(33, ttl=47)]) + def test_mpls_tunnel_many(self): + """ Multiple Tunnels """ + + for ii in range(10): + mpls_tun = VppMPLSTunnelInterface( + self, + [VppRoutePath(self.pg0.remote_ip4, + self.pg0.sw_if_index, + labels=[VppMplsLabel(44, ttl=32), + VppMplsLabel(46, MplsLspMode.UNIFORM)])]) + mpls_tun.add_vpp_config() + mpls_tun.admin_up() + def test_v4_exp_null(self): """ MPLS V4 Explicit NULL test """ |