tests: disable failing tests on ubuntu-22.04 debian-11

Type: test

Change-Id: I7b2314a731c83b3dcd69c999edb8ebed53839724
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
This commit is contained in:
Dave Wallace
2022-09-20 21:52:18 -04:00
parent fe45f8f5af
commit 670724c51e
11 changed files with 116 additions and 8 deletions

View File

@ -41,6 +41,8 @@ from vpp_interface import VppInterface
from vpp_ip_route import VppIpRoute, VppRoutePath
from vpp_object import VppObject
from vpp_papi import VppEnum
from framework import tag_fixme_ubuntu2204, tag_fixme_debian11
from framework import is_distro_ubuntu2204, is_distro_debian11
from framework import VppTestCase
from re import compile
import unittest
@ -493,6 +495,8 @@ class VppWgPeer(VppObject):
self._test.assertEqual(rv.peer_index, self.index)
@tag_fixme_ubuntu2204
@tag_fixme_debian11
class TestWg(VppTestCase):
"""Wireguard Test Case"""
@ -518,6 +522,10 @@ class TestWg(VppTestCase):
@classmethod
def setUpClass(cls):
super(TestWg, cls).setUpClass()
if (is_distro_ubuntu2204 == True or is_distro_debian11 == True) and not hasattr(
cls, "vpp"
):
return
try:
cls.create_pg_interfaces(range(3))
for i in cls.pg_interfaces:
@ -2227,6 +2235,8 @@ class TestWg(VppTestCase):
wg1.remove_vpp_config()
@tag_fixme_ubuntu2204
@tag_fixme_debian11
class WireguardHandoffTests(TestWg):
"""Wireguard Tests in multi worker setup"""