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_ei.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_ei.py')
-rw-r--r-- | test/test_nat44_ei.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test_nat44_ei.py b/test/test_nat44_ei.py index 9eb127aaf0b..259c445ea5b 100644 --- a/test/test_nat44_ei.py +++ b/test/test_nat44_ei.py @@ -8,6 +8,7 @@ import unittest from io import BytesIO import scapy.compat +from framework import tag_fixme_debian11, is_distro_debian11 from framework import VppTestCase, VppTestRunner from ipfix import IPFIX, Set, Template, Data, IPFIXDecoder from scapy.all import ( @@ -910,6 +911,7 @@ def get_nat44_ei_in2out_worker_index(ip, vpp_worker_count): return 1 + h % vpp_worker_count +@tag_fixme_debian11 class TestNAT44EI(MethodHolder): """NAT44EI Test Cases""" @@ -919,6 +921,8 @@ class TestNAT44EI(MethodHolder): @classmethod def setUpClass(cls): super(TestNAT44EI, cls).setUpClass() + if is_distro_debian11 == True and not hasattr(cls, "vpp"): + return cls.vapi.cli("set log class nat44-ei level debug") cls.tcp_port_in = 6303 |