diff options
Diffstat (limited to 'test/test_dvr.py')
-rw-r--r-- | test/test_dvr.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_dvr.py b/test/test_dvr.py index e616408e8c7..dcc17f040eb 100644 --- a/test/test_dvr.py +++ b/test/test_dvr.py @@ -13,10 +13,12 @@ from scapy.layers.l2 import Ether, Dot1Q from scapy.layers.inet import IP, UDP from socket import AF_INET from ipaddress import IPv4Network +from config import config NUM_PKTS = 67 +@unittest.skipIf("acl" in config.excluded_plugins, "Exclude tests requiring ACL plugin") class TestDVR(VppTestCase): """Distributed Virtual Router""" |