diff options
| author | Donatas Abraitis <donatas.abraitis@gmail.com> | 2021-07-30 18:05:45 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-30 18:05:45 +0300 |
| commit | 8c834868dc12db8a2c5f8a4ac931c28cd1115736 (patch) | |
| tree | 8edbe5340d185e9320ee41f85f93340716dce6f3 /tests/topotests/zebra_rib | |
| parent | b0e475f7c2720b393f46a683fdb197046057367b (diff) | |
| parent | ba0026272cee5a863060fa978bcbcdc57fe6b21e (diff) | |
Merge pull request #9196 from donaldsharp/test_queued
tests: Increase timeout for loaded systems
Diffstat (limited to 'tests/topotests/zebra_rib')
| -rw-r--r-- | tests/topotests/zebra_rib/test_zebra_rib.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/topotests/zebra_rib/test_zebra_rib.py b/tests/topotests/zebra_rib/test_zebra_rib.py index 5f22435f4a..56d112b7c3 100644 --- a/tests/topotests/zebra_rib/test_zebra_rib.py +++ b/tests/topotests/zebra_rib/test_zebra_rib.py @@ -126,7 +126,7 @@ def test_zebra_kernel_admin_distance(): "show ip route 4.5.{}.0 json".format(i), expected, ) - _, result = topotest.run_and_expect(test_func, None, count=2, wait=0.5) + _, result = topotest.run_and_expect(test_func, None, count=20, wait=0.5) assertmsg = '"r1" JSON output mismatches' assert result is None, assertmsg # tgen.mininet_cli() @@ -147,7 +147,7 @@ def test_zebra_kernel_override(): test_func = partial( topotest.router_json_cmp, r1, "show ip route 4.5.1.0 json", expected ) - _, result = topotest.run_and_expect(test_func, None, count=2, wait=0.5) + _, result = topotest.run_and_expect(test_func, None, count=20, wait=0.5) assert result is None, '"r1" JSON output mismatches' logger.info( @@ -160,7 +160,7 @@ def test_zebra_kernel_override(): test_func = partial( topotest.router_json_cmp, r1, "show ip route 4.5.1.0 json", expected ) - _, result = topotest.run_and_expect(test_func, None, count=2, wait=0.5) + _, result = topotest.run_and_expect(test_func, None, count=20, wait=0.5) assert result is None, '"r1" JSON output mismatches' |
