tests: bgp_vpnv4_noretain test turns on isis but never uses it

The test was reading in the bgp config for the isis config and
clearly the test is working without this.  So let's remove
from the test the usage of isisd

Signed-off-by: Donald Sharp <sharpd@nvidia.com>
This commit is contained in:
Donald Sharp 2023-08-04 12:56:11 -04:00
parent b036c510f2
commit dd02d8926c
3 changed files with 0 additions and 31 deletions

View File

@ -1,14 +0,0 @@
interface r1-eth0
ip router isis 1
isis circuit-type level-1
!
interface lo
ip router isis 1
isis passive
!
router isis 1
is-type level-1
net 49.0002.0000.1994.00
segment-routing on
segment-routing prefix 192.0.2.1/32 index 11
!

View File

@ -1,14 +0,0 @@
interface r2-eth0
ip router isis 1
isis circuit-type level-1
!
interface lo
ip router isis 1
isis passive
!
router isis 1
is-type level-1
net 49.0002.0000.1995.00
segment-routing on
segment-routing prefix 192.0.2.2/32 index 22
!

View File

@ -120,9 +120,6 @@ def setup_module(mod):
router.load_config(
TopoRouter.RD_BGP, os.path.join(CWD, "{}/bgpd.conf".format(rname))
)
router.load_config(
TopoRouter.RD_ISIS, os.path.join(CWD, "{}/bgpd.conf".format(rname))
)
# Initialize all routers.
tgen.start_router()