mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-04-28 17:42:20 +00:00
Merge pull request #13377 from donaldsharp/ospf_dead_interval
tests: Increase the dead interval to be longer for neighbor testing
This commit is contained in:
commit
ccf08bda1a
@ -18,7 +18,7 @@
|
||||
"ospf": {
|
||||
"area": "0.0.0.3",
|
||||
"hello_interval": 1,
|
||||
"dead_interval": 4,
|
||||
"dead_interval": 10,
|
||||
"priority": 98
|
||||
}
|
||||
},
|
||||
@ -27,7 +27,7 @@
|
||||
"ospf": {
|
||||
"area": "0.0.0.3",
|
||||
"hello_interval": 1,
|
||||
"dead_interval": 4,
|
||||
"dead_interval": 10,
|
||||
"priority": 99
|
||||
}
|
||||
},
|
||||
@ -36,7 +36,7 @@
|
||||
"ospf": {
|
||||
"area": "0.0.0.3",
|
||||
"hello_interval": 1,
|
||||
"dead_interval": 4,
|
||||
"dead_interval": 10,
|
||||
"priority": 0
|
||||
}
|
||||
},
|
||||
@ -45,7 +45,7 @@
|
||||
"ospf": {
|
||||
"area": "0.0.0.3",
|
||||
"hello_interval": 1,
|
||||
"dead_interval": 4,
|
||||
"dead_interval": 10,
|
||||
"priority": 0
|
||||
}
|
||||
}
|
||||
|
@ -196,8 +196,10 @@ def test_ospf_lan_tc1_p0(request):
|
||||
result = verify_ospf_neighbor(tgen, topo, dut, input_dict, lan=True)
|
||||
assert result is True, "Testcase {} : Failed \n Error: {}".format(tc_name, result)
|
||||
|
||||
step("Configure DR priority 100 on R0 and clear ospf neighbors "
|
||||
"on all the routers.")
|
||||
step(
|
||||
"Configure DR priority 100 on R0 and clear ospf neighbors "
|
||||
"on all the routers."
|
||||
)
|
||||
|
||||
input_dict = {
|
||||
"r0": {
|
||||
@ -233,8 +235,10 @@ def test_ospf_lan_tc1_p0(request):
|
||||
result = verify_ospf_neighbor(tgen, topo, dut, input_dict, lan=True)
|
||||
assert result is True, "Testcase {} : Failed \n Error: {}".format(tc_name, result)
|
||||
|
||||
step("Configure DR priority 150 on R0 and clear ospf neighbors "
|
||||
"on all the routers.")
|
||||
step(
|
||||
"Configure DR priority 150 on R0 and clear ospf neighbors "
|
||||
"on all the routers."
|
||||
)
|
||||
|
||||
input_dict = {
|
||||
"r0": {
|
||||
@ -489,7 +493,7 @@ def test_ospf_lan_tc2_p0(request):
|
||||
"s1": {
|
||||
"ospf": {
|
||||
"priority": 98,
|
||||
"timerDeadSecs": 4,
|
||||
"timerDeadSecs": 10,
|
||||
"area": "0.0.0.3",
|
||||
"mcastMemberOspfDesignatedRouters": True,
|
||||
"mcastMemberOspfAllRouters": True,
|
||||
|
Loading…
Reference in New Issue
Block a user