diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2015-11-07 23:17:04 +0900 |
---|---|---|
committer | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2015-11-11 00:28:34 +0900 |
commit | 6dacfb38bf6e5c32abe39cfdfe825d3702316855 (patch) | |
tree | aff47e475ce978bcd8667ca104933ba97cd3c72b /test/scenario_test/ibgp_router_test.py | |
parent | 84d73c1b45006c40764c1587207b5ad67598e893 (diff) |
scenario_test: use default interface for ipv4-peering
avoid creating many linux bridges via pipework
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'test/scenario_test/ibgp_router_test.py')
-rw-r--r-- | test/scenario_test/ibgp_router_test.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/test/scenario_test/ibgp_router_test.py b/test/scenario_test/ibgp_router_test.py index aa27c20d..5e40bf13 100644 --- a/test/scenario_test/ibgp_router_test.py +++ b/test/scenario_test/ibgp_router_test.py @@ -51,9 +51,6 @@ class GoBGPTestBase(unittest.TestCase): time.sleep(initial_wait_time) - br01 = Bridge(name='br01', subnet='192.168.10.0/24') - [br01.addif(ctn) for ctn in ctns] - # ibgp peer. loop topology for a, b in combinations(ctns, 2): a.add_peer(b) @@ -61,7 +58,6 @@ class GoBGPTestBase(unittest.TestCase): cls.gobgp = g1 cls.quaggas = {'q1': q1, 'q2': q2} - cls.bridges = {'br01': br01} # test each neighbor state is turned establish def test_01_neighbor_established(self): @@ -161,7 +157,6 @@ class GoBGPTestBase(unittest.TestCase): initial_wait_time = q3.run() time.sleep(initial_wait_time) - self.bridges['br01'].addif(q3) self.gobgp.add_peer(q3) q3.add_peer(self.gobgp) |