make test: mark all BFD tests as extended

Change-Id: Iaed59cca1c9fd69eadb86c15be6417a956cb9d5a
Signed-off-by: Klement Sekera <ksekera@cisco.com>
This commit is contained in:
Klement Sekera
2017-04-21 09:49:14 +02:00
committed by Damjan Marion
parent f12a83f54f
commit b68ad1e99f

View File

@@ -251,6 +251,7 @@ class BFDAPITestCase(VppTestCase):
session.activate_auth(key2) session.activate_auth(key2)
@unittest.skipUnless(running_extended_tests(), "part of extended tests")
class BFDTestSession(object): class BFDTestSession(object):
""" BFD session as seen from test framework side """ """ BFD session as seen from test framework side """
@@ -612,6 +613,7 @@ def wait_for_bfd_packet(test, timeout=1, pcap_time_min=None):
return p return p
@unittest.skipUnless(running_extended_tests(), "part of extended tests")
class BFD4TestCase(VppTestCase): class BFD4TestCase(VppTestCase):
"""Bidirectional Forwarding Detection (BFD)""" """Bidirectional Forwarding Detection (BFD)"""
@@ -1402,6 +1404,7 @@ class BFD4TestCase(VppTestCase):
self.assert_equal(len(events), 0, "number of events received") self.assert_equal(len(events), 0, "number of events received")
@unittest.skipUnless(running_extended_tests(), "part of extended tests")
class BFD6TestCase(VppTestCase): class BFD6TestCase(VppTestCase):
"""Bidirectional Forwarding Detection (BFD) (IPv6) """ """Bidirectional Forwarding Detection (BFD) (IPv6) """
@@ -1595,6 +1598,7 @@ class BFD6TestCase(VppTestCase):
self.assertTrue(echo_seen, "No echo packets received") self.assertTrue(echo_seen, "No echo packets received")
@unittest.skipUnless(running_extended_tests(), "part of extended tests")
class BFDFIBTestCase(VppTestCase): class BFDFIBTestCase(VppTestCase):
""" BFD-FIB interactions (IPv6) """ """ BFD-FIB interactions (IPv6) """
@@ -1696,6 +1700,7 @@ class BFDFIBTestCase(VppTestCase):
packet[IPv6].dst) packet[IPv6].dst)
@unittest.skipUnless(running_extended_tests(), "part of extended tests")
class BFDSHA1TestCase(VppTestCase): class BFDSHA1TestCase(VppTestCase):
"""Bidirectional Forwarding Detection (BFD) (SHA1 auth) """ """Bidirectional Forwarding Detection (BFD) (SHA1 auth) """