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/flow_spec_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/flow_spec_test.py')
-rw-r--r-- | test/scenario_test/flow_spec_test.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/scenario_test/flow_spec_test.py b/test/scenario_test/flow_spec_test.py index bba92e1e..f3c6bff2 100644 --- a/test/scenario_test/flow_spec_test.py +++ b/test/scenario_test/flow_spec_test.py @@ -58,9 +58,6 @@ class GoBGPTestBase(unittest.TestCase): time.sleep(initial_wait_time) - br01 = Bridge(name='br01', subnet='192.168.10.0/24', self_ip=True) - [br01.addif(ctn) for ctn in ctns] - # ibgp peer. loop topology for a, b in combinations(ctns, 2): a.add_peer(b, flowspec=True) @@ -68,7 +65,6 @@ class GoBGPTestBase(unittest.TestCase): cls.gobgp = g1 cls.exabgp = e1 - cls.bridges = {'br01': br01} # test each neighbor state is turned establish def test_01_neighbor_established(self): |