diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2022-09-20 21:52:18 -0400 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2022-09-27 03:26:15 +0000 |
commit | 670724c51eccea6c622f047c546d15c894531ce3 (patch) | |
tree | cc9fa499e38d39920eb673595034a0e0b37e0e6a /test/test_flowprobe.py | |
parent | fe45f8f5afbf34d68cf992cc32b12432a82cdb38 (diff) |
tests: disable failing tests on ubuntu-22.04 debian-11
Type: test
Change-Id: I7b2314a731c83b3dcd69c999edb8ebed53839724
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'test/test_flowprobe.py')
-rw-r--r-- | test/test_flowprobe.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/test/test_flowprobe.py b/test/test_flowprobe.py index 141d7458c39..e3ff2245ad1 100644 --- a/test/test_flowprobe.py +++ b/test/test_flowprobe.py @@ -13,7 +13,8 @@ from scapy.layers.inet import IP, TCP, UDP from scapy.layers.inet6 import IPv6 from config import config -from framework import tag_fixme_vpp_workers +from framework import tag_fixme_vpp_workers, tag_fixme_ubuntu2204, tag_fixme_debian11 +from framework import is_distro_ubuntu2204, is_distro_debian11 from framework import VppTestCase, VppTestRunner from framework import tag_run_solo from vpp_object import VppObject @@ -151,6 +152,10 @@ class MethodHolder(VppTestCase): variables and configure VPP. """ super(MethodHolder, cls).setUpClass() + if (is_distro_ubuntu2204 == True or is_distro_debian11 == True) and not hasattr( + cls, "vpp" + ): + return try: # Create pg interfaces cls.create_pg_interfaces(range(9)) @@ -337,6 +342,8 @@ class MethodHolder(VppTestCase): @tag_run_solo @tag_fixme_vpp_workers +@tag_fixme_ubuntu2204 +@tag_fixme_debian11 class Flowprobe(MethodHolder): """Template verification, timer tests""" |