From 670724c51eccea6c622f047c546d15c894531ce3 Mon Sep 17 00:00:00 2001 From: Dave Wallace Date: Tue, 20 Sep 2022 21:52:18 -0400 Subject: tests: disable failing tests on ubuntu-22.04 debian-11 Type: test Change-Id: I7b2314a731c83b3dcd69c999edb8ebed53839724 Signed-off-by: Dave Wallace --- test/test_memif.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'test/test_memif.py') diff --git a/test/test_memif.py b/test/test_memif.py index 9b15cd0005b..f0b60214442 100644 --- a/test/test_memif.py +++ b/test/test_memif.py @@ -5,7 +5,7 @@ from scapy.layers.l2 import Ether from scapy.layers.inet import IP, ICMP from framework import VppTestCase, VppTestRunner -from framework import tag_run_solo +from framework import tag_run_solo, tag_fixme_debian11, is_distro_debian11 from remote_test import RemoteClass, RemoteVppTestCase from vpp_memif import remove_all_memif_vpp_config, VppSocketFilename, VppMemif from vpp_ip_route import VppIpRoute, VppRoutePath @@ -13,6 +13,7 @@ from vpp_papi import VppEnum @tag_run_solo +@tag_fixme_debian11 class TestMemif(VppTestCase): """Memif Test Case""" @@ -36,6 +37,9 @@ class TestMemif(VppTestCase): cls.remote_test.start_remote() cls.remote_test.set_request_timeout(10) super(TestMemif, cls).setUpClass() + if is_distro_debian11 == True and not hasattr(cls, "vpp"): + cls.remote_test.quit_remote() + return cls.remote_test.setUpClass(cls.tempdir) cls.create_pg_interfaces(range(1)) for pg in cls.pg_interfaces: -- cgit 1.2.3-korg