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_neighbor.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_neighbor.py')
-rw-r--r-- | test/test_neighbor.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_neighbor.py b/test/test_neighbor.py index 58d98a36d92..f663e735d78 100644 --- a/test/test_neighbor.py +++ b/test/test_neighbor.py @@ -4,7 +4,7 @@ import unittest import os from socket import AF_INET, AF_INET6, inet_pton -from framework import tag_fixme_vpp_workers +from framework import tag_fixme_vpp_workers, tag_fixme_ubuntu2204, tag_fixme_debian11 from framework import VppTestCase, VppTestRunner from vpp_neighbor import VppNeighbor, find_nbr from vpp_ip_route import ( @@ -2196,6 +2196,7 @@ class NeighborStatsTestCase(VppTestCase): self.assertEqual(NUM_PKTS + 16, nd1.get_stats()["packets"]) +@tag_fixme_ubuntu2204 class NeighborAgeTestCase(VppTestCase): """ARP/ND Aging""" |