mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-05-03 17:35:54 +00:00

Do a straight conversion of `struct bgp_info` to `struct bgp_path_info`. This commit will setup the rename of variables as well. This is being done because `struct bgp_info` is not descriptive of what this data actually is. It is path information for routes that we keep to build the actual routes nexthops plus some extra information. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
10 lines
210 B
Python
10 lines
210 B
Python
import frrtest
|
|
|
|
class TestMpath(frrtest.TestMultiOut):
|
|
program = './test_mpath'
|
|
|
|
TestMpath.okfail("bgp maximum-paths config")
|
|
TestMpath.okfail("bgp_mp_list")
|
|
TestMpath.okfail("bgp_path_info_mpath_update")
|
|
|