use class decorators to mark tests that shouldn't be run by default
diff --git a/tests/caps.py b/tests/caps.py
index 6c48840..b01fd48 100644
--- a/tests/caps.py
+++ b/tests/caps.py
@@ -92,7 +92,7 @@
time.sleep(flow_count / 100)
-
+@disabled
class FillTableExact(base_tests.SimpleProtocol):
"""
Fill the flow table with exact matches; can take a while
@@ -111,12 +111,11 @@
you can control which table to check.
"""
- priority = -1
-
def runTest(self):
logging.info("Running " + str(self))
flow_caps_common(self)
+@disabled
class FillTableWC(base_tests.SimpleProtocol):
"""
Fill the flow table with wildcard matches
@@ -137,8 +136,6 @@
"""
- priority = -1
-
def runTest(self):
logging.info("Running " + str(self))
flow_caps_common(self, is_exact=False)