diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-09-19 00:00:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-19 00:00:42 +0200 |
commit | bd1b1a17747a0fa4505aaae21f4973b92adfacc2 (patch) | |
tree | a312e9730650273c54b9d6c960def953f0015487 /tests | |
parent | Merge pull request #7086 from ckishimo/flush_type5 (diff) | |
parent | tests: increase timeout to avoid intermittent LDP Sync test failure (diff) | |
download | frr-bd1b1a17747a0fa4505aaae21f4973b92adfacc2.tar.xz frr-bd1b1a17747a0fa4505aaae21f4973b92adfacc2.zip |
Merge pull request #7130 from volta-networks/fix_ldp_sync_topotest
tests: increase timeout to avoid intermittent LDP Sync test failure
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/topotests/ldp-sync-isis-topo1/test_ldp_sync_isis_topo1.py | 4 | ||||
-rwxr-xr-x | tests/topotests/ldp-sync-ospf-topo1/test_ldp_sync_ospf_topo1.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/topotests/ldp-sync-isis-topo1/test_ldp_sync_isis_topo1.py b/tests/topotests/ldp-sync-isis-topo1/test_ldp_sync_isis_topo1.py index 1dce698c1..bdbe6e0f3 100755 --- a/tests/topotests/ldp-sync-isis-topo1/test_ldp_sync_isis_topo1.py +++ b/tests/topotests/ldp-sync-isis-topo1/test_ldp_sync_isis_topo1.py @@ -163,9 +163,9 @@ def router_compare_json_output(rname, command, reference): filename = "{}/{}/{}".format(CWD, rname, reference) expected = json.loads(open(filename).read()) - # Run test function until we get an result. Wait at most 80 seconds. + # Run test function until we get an result. test_func = partial(topotest.router_json_cmp, tgen.gears[rname], command, expected) - _, diff = topotest.run_and_expect(test_func, None, count=160, wait=0.5) + _, diff = topotest.run_and_expect(test_func, None, count=320, wait=0.5) assertmsg = '"{}" JSON output mismatches the expected result'.format(rname) assert diff is None, assertmsg diff --git a/tests/topotests/ldp-sync-ospf-topo1/test_ldp_sync_ospf_topo1.py b/tests/topotests/ldp-sync-ospf-topo1/test_ldp_sync_ospf_topo1.py index dc6a76eb4..46f3cde08 100755 --- a/tests/topotests/ldp-sync-ospf-topo1/test_ldp_sync_ospf_topo1.py +++ b/tests/topotests/ldp-sync-ospf-topo1/test_ldp_sync_ospf_topo1.py @@ -162,9 +162,9 @@ def router_compare_json_output(rname, command, reference): filename = "{}/{}/{}".format(CWD, rname, reference) expected = json.loads(open(filename).read()) - # Run test function until we get an result. Wait at most 80 seconds. + # Run test function until we get an result. test_func = partial(topotest.router_json_cmp, tgen.gears[rname], command, expected) - _, diff = topotest.run_and_expect(test_func, None, count=160, wait=0.5) + _, diff = topotest.run_and_expect(test_func, None, count=320, wait=0.5) assertmsg = '"{}" JSON output mismatches the expected result'.format(rname) assert diff is None, assertmsg |