diff options
author | Klement Sekera <ksekera@cisco.com> | 2017-04-03 08:10:08 +0200 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2017-04-03 17:23:56 +0000 |
commit | 2e01dfa25dd47488e6120bfcaea567fc1093f0b8 (patch) | |
tree | 855f2b11f83e1735abc3c4102ac21a14930c77e1 /test/bfd.py | |
parent | 2c35e5849d0c87ce5d63724d35f98379187519d8 (diff) |
make test: relax BFD time intervals
Increased time intervals mean longer test runs, but also reduce
the chance of getting annoying (especially in gerrit) random failures.
Now that tests are split into `basic' and `all', the increased runtime
of BFD tests (of which majority doesn't run in basic case) doesn't
matter too much..
Change-Id: I4a15bb4facad634f123bc9cc6f45eddbf4976fd1
Signed-off-by: Klement Sekera <ksekera@cisco.com>
Diffstat (limited to 'test/bfd.py')
-rw-r--r-- | test/bfd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bfd.py b/test/bfd.py index d1d948b323e..452a1804988 100644 --- a/test/bfd.py +++ b/test/bfd.py @@ -237,7 +237,7 @@ class VppBFDUDPSession(VppObject): """ Represents BFD UDP session in VPP """ def __init__(self, test, interface, peer_addr, local_addr=None, af=AF_INET, - desired_min_tx=100000, required_min_rx=100000, detect_mult=3, + desired_min_tx=300000, required_min_rx=300000, detect_mult=3, sha1_key=None, bfd_key_id=None): self._test = test self._interface = interface |