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_nat44_ed.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_nat44_ed.py')
-rw-r--r-- | test/test_nat44_ed.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test_nat44_ed.py b/test/test_nat44_ed.py index d90afd27025..6b0eedcec20 100644 --- a/test/test_nat44_ed.py +++ b/test/test_nat44_ed.py @@ -5,6 +5,7 @@ from io import BytesIO from random import randint, choice import scapy.compat +from framework import tag_fixme_ubuntu2204, is_distro_ubuntu2204 from framework import VppTestCase, VppTestRunner from scapy.data import IP_PROTOS from scapy.layers.inet import IP, TCP, UDP, ICMP, GRE @@ -159,6 +160,8 @@ class TestNAT44ED(VppTestCase): @classmethod def setUpClass(cls): super().setUpClass() + if is_distro_ubuntu2204 == True and not hasattr(cls, "vpp"): + return cls.create_pg_interfaces(range(12)) cls.interfaces = list(cls.pg_interfaces[:4]) @@ -2550,6 +2553,7 @@ class TestNAT44ED(VppTestCase): out_if.unconfig() +@tag_fixme_ubuntu2204 class TestNAT44EDMW(TestNAT44ED): """NAT44ED MW Test Case""" |