diff options
author | Ivan Ivanets <iivanets@cisco.com> | 2024-10-10 16:51:03 +0300 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2024-10-21 20:20:42 +0000 |
commit | 2e8a406aaf559817f9799908087e7dd671d17094 (patch) | |
tree | 63468c7606c8a2afcbb5db8598e2a34f94940d2f | |
parent | 4c5ec738747c7e924af5d96a07e5d7c31cc2c998 (diff) |
tests: remove tag_fixme_ubuntu2204
Type: test
Activate tests that works successfully on ubuntu 22.04 but were
problematic on later version and were excluded by
@tag_fixme_ubuntu2204
Change-Id: I93c4626a120ce8b475e9c5ca933a5544d6337933
Signed-off-by: Ivan Ivanets <iivanets@cisco.com>
-rw-r--r-- | test/test_flowprobe.py | 2 | ||||
-rw-r--r-- | test/test_nat44_ed.py | 3 | ||||
-rw-r--r-- | test/test_nat64.py | 2 |
3 files changed, 1 insertions, 6 deletions
diff --git a/test/test_flowprobe.py b/test/test_flowprobe.py index 9622e6158b5..18a2e3a36c2 100644 --- a/test/test_flowprobe.py +++ b/test/test_flowprobe.py @@ -16,7 +16,6 @@ from config import config from framework import VppTestCase from asfframework import ( tag_fixme_vpp_workers, - tag_fixme_ubuntu2204, tag_fixme_debian11, tag_run_solo, is_distro_ubuntu2204, @@ -383,7 +382,6 @@ class MethodHolder(VppTestCase): @tag_run_solo @tag_fixme_vpp_workers -@tag_fixme_ubuntu2204 @tag_fixme_debian11 @unittest.skipIf( "flowprobe" in config.excluded_plugins, "Exclude Flowprobe plugin tests" diff --git a/test/test_nat44_ed.py b/test/test_nat44_ed.py index 7615312ac31..83629bb185b 100644 --- a/test/test_nat44_ed.py +++ b/test/test_nat44_ed.py @@ -7,7 +7,7 @@ from random import randint, choice import re import scapy.compat from framework import VppTestCase, VppLoInterface -from asfframework import VppTestRunner, tag_fixme_ubuntu2204, is_distro_ubuntu2204 +from asfframework import VppTestRunner, is_distro_ubuntu2204 from scapy.data import IP_PROTOS from scapy.layers.inet import IP, TCP, UDP, ICMP, GRE from scapy.layers.inet import IPerror, TCPerror @@ -2606,7 +2606,6 @@ class TestNAT44ED(VppTestCase): i.remove_vpp_config() -@tag_fixme_ubuntu2204 @unittest.skipIf("nat" in config.excluded_plugins, "Exclude NAT plugin tests") class TestNAT44EDMW(TestNAT44ED): """NAT44ED MW Test Case""" diff --git a/test/test_nat64.py b/test/test_nat64.py index a28d7257aa0..0ddce3d23ec 100644 --- a/test/test_nat64.py +++ b/test/test_nat64.py @@ -12,7 +12,6 @@ from config import config from framework import VppTestCase from asfframework import ( tag_fixme_vpp_workers, - tag_fixme_ubuntu2204, is_distro_ubuntu2204, VppTestRunner, ) @@ -40,7 +39,6 @@ from config import config @tag_fixme_vpp_workers -@tag_fixme_ubuntu2204 @unittest.skipIf("nat" in config.excluded_plugins, "Exclude NAT plugin tests") class TestNAT64(VppTestCase): """NAT64 Test Cases""" |