diff options
Diffstat (limited to 'test/test_gtpu.py')
-rw-r--r-- | test/test_gtpu.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test_gtpu.py b/test/test_gtpu.py index 5fe4f36ccb3..d05a1ff89e8 100644 --- a/test/test_gtpu.py +++ b/test/test_gtpu.py @@ -5,6 +5,7 @@ import unittest from framework import VppTestCase from asfframework import VppTestRunner, tag_fixme_vpp_workers from template_bd import BridgeDomain +from config import config from scapy.layers.l2 import Ether from scapy.layers.inet import IP, UDP @@ -17,6 +18,7 @@ from vpp_ip import INVALID_INDEX @tag_fixme_vpp_workers +@unittest.skipIf("gtpu" in config.excluded_plugins, "Exclude GTPU plugin tests") class TestGtpuUDP(VppTestCase): """GTPU UDP ports Test Case""" @@ -119,6 +121,7 @@ class TestGtpuUDP(VppTestCase): ) +@unittest.skipIf("gtpu" in config.excluded_plugins, "Exclude GTPU plugin tests") class TestGtpu(BridgeDomain, VppTestCase): """GTPU Test Case""" |